Skip to content

Commit 3b48228

Browse files
authored
chore: Finish migration to sqlc-dev/sqlc (#2548)
1 parent 4efdf15 commit 3b48228

File tree

43 files changed

+74
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+74
-75
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ proto:
4949

5050
remote-proto:
5151
protoc \
52-
--go_out=. --go_opt="Minternal/remote/gen.proto=github.com/kyleconroy/sqlc/internal/remote" --go_opt=module=github.com/kyleconroy/sqlc \
53-
--go-grpc_out=. --go-grpc_opt="Minternal/remote/gen.proto=github.com/kyleconroy/sqlc/internal/remote" --go-grpc_opt=module=github.com/kyleconroy/sqlc \
52+
--go_out=. --go_opt="Minternal/remote/gen.proto=github.com/sqlc-dev/sqlc/internal/remote" --go_opt=module=github.com/sqlc-dev/sqlc \
53+
--go-grpc_out=. --go-grpc_opt="Minternal/remote/gen.proto=github.com/sqlc-dev/sqlc/internal/remote" --go-grpc_opt=module=github.com/sqlc-dev/sqlc \
5454
internal/remote/gen.proto

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# sqlc: A SQL Compiler
22

3-
![go](https://github.com/kyleconroy/sqlc/workflows/go/badge.svg)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/kyleconroy/sqlc)](https://goreportcard.com/report/github.com/kyleconroy/sqlc)
3+
![go](https://github.com/sqlc-dev/sqlc/workflows/go/badge.svg)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/sqlc-dev/sqlc)](https://goreportcard.com/report/github.com/sqlc-dev/sqlc)
55

66
sqlc generates **type-safe code** from SQL. Here's how it works:
77

cliff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file.\n
1010
# https://tera.netlify.app/docs/#introduction
1111
body = """
1212
{% if version %}\
13-
## [{{ version | trim_start_matches(pat="v") }}](https://github.com/kyleconroy/sqlc/releases/tag/{{ version }})
13+
## [{{ version | trim_start_matches(pat="v") }}](https://github.com/sqlc-dev/sqlc/releases/tag/{{ version }})
1414
{% else %}\
1515
## [unreleased]
1616
{% endif %}\

docs/overview/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ sudo snap install sqlc
1919
### Go >= 1.17:
2020

2121
```
22-
go install github.com/kyleconroy/sqlc/cmd/sqlc@latest
22+
go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest
2323
```
2424

2525
### Go < 1.17:
2626

2727
```
28-
go get github.com/kyleconroy/sqlc/cmd/sqlc
28+
go get github.com/sqlc-dev/sqlc/cmd/sqlc
2929
```
3030

3131
## Docker

internal/config/override.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type Override struct {
1414
GoType GoType `json:"go_type" yaml:"go_type"`
1515

1616
// additional Go struct tags to add to this field, in raw Go struct tag form, e.g. `validate:"required" x:"y,z"`
17-
// see https://github.com/kyleconroy/sqlc/issues/534
17+
// see https://github.com/sqlc-dev/sqlc/issues/534
1818
GoStructTag GoStructTag `json:"go_struct_tag" yaml:"go_struct_tag"`
1919

2020
// fully qualified name of the Go type, e.g. `github.com/segmentio/ksuid.KSUID`

internal/endtoend/testdata/case_named_params/mysql/query.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/kyleconroy/sqlc/issues/1195
1+
-- https://github.com/sqlc-dev/sqlc/issues/1195
22

33
CREATE TABLE authors (
44
id BIGINT PRIMARY KEY,

internal/endtoend/testdata/case_named_params/postgresql/query.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/kyleconroy/sqlc/issues/1195
1+
-- https://github.com/sqlc-dev/sqlc/issues/1195
22

33
CREATE TABLE authors (
44
id BIGSERIAL PRIMARY KEY,

internal/endtoend/testdata/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kyleconroy/sqlc/endtoend
1+
module github.com/sqlc-dev/sqlc/endtoend
22

33
go 1.18
44

internal/endtoend/testdata/invalid_table_alias/mysql/query.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/kyleconroy/sqlc/issues/437
1+
-- https://github.com/sqlc-dev/sqlc/issues/437
22
CREATE TABLE authors (
33
id INT PRIMARY KEY,
44
name VARCHAR(255) NOT NULL,

internal/endtoend/testdata/invalid_table_alias/postgresql/query.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/kyleconroy/sqlc/issues/437
1+
-- https://github.com/sqlc-dev/sqlc/issues/437
22
CREATE TABLE authors (
33
id BIGSERIAL PRIMARY KEY,
44
name text NOT NULL,

0 commit comments

Comments
 (0)