Skip to content

Commit e7ab328

Browse files
authored
docs: Point GitHub links to new repository location (#2534)
Don't update the installation instructions until v1.20 is live
1 parent d361c5d commit e7ab328

File tree

5 files changed

+35
-35
lines changed

5 files changed

+35
-35
lines changed

docs/guides/plugins.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ to the plugin itself.
2222
{
2323
"name": "greeter",
2424
"wasm": {
25-
"url": "https://github.com/kyleconroy/sqlc-gen-greeter/releases/download/v0.1.0/sqlc-gen-greeter.wasm",
25+
"url": "https://github.com/sqlc-dev/sqlc-gen-greeter/releases/download/v0.1.0/sqlc-gen-greeter.wasm",
2626
"sha256": "afc486dac2068d741d7a4110146559d12a013fd0286f42a2fc7dcd802424ad07"
2727
}
2828
}
@@ -44,9 +44,9 @@ to the plugin itself.
4444
```
4545

4646
For a complete working example see the following files:
47-
- [sqlc-gen-greeter](https://github.com/kyleconroy/sqlc-gen-greeter)
47+
- [sqlc-gen-greeter](https://github.com/sqlc-dev/sqlc-gen-greeter)
4848
- A WASM plugin (written in Rust) that outputs a friendly message
49-
- [wasm_plugin_sqlc_gen_greeter](https://github.com/kyleconroy/sqlc/tree/main/internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter)
49+
- [wasm_plugin_sqlc_gen_greeter](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter)
5050
- An example project showing how to use a WASM plugin
5151

5252
## Process plugins
@@ -91,7 +91,7 @@ to the plugin itself.
9191
```
9292

9393
For a complete working example see the following files:
94-
- [sqlc-gen-json](https://github.com/kyleconroy/sqlc/tree/main/cmd/sqlc-gen-json)
94+
- [sqlc-gen-json](https://github.com/sqlc-dev/sqlc/tree/main/cmd/sqlc-gen-json)
9595
- A process-based plugin that serializes the CodeGenRequest to JSON
96-
- [process_plugin_sqlc_gen_json](https://github.com/kyleconroy/sqlc/tree/main/internal/endtoend/testdata/process_plugin_sqlc_gen_json)
96+
- [process_plugin_sqlc_gen_json](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/process_plugin_sqlc_gen_json)
9797
- An example project showing how to use a process-based plugin

docs/howto/vet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ sql:
189189
```
190190

191191
To see this in action, check out the [authors
192-
example](https://github.com/kyleconroy/sqlc/blob/main/examples/authors/sqlc.yaml).
192+
example](https://github.com/sqlc-dev/sqlc/blob/main/examples/authors/sqlc.yaml).
193193

194194
Please note that `sqlc` does not manage or migrate your database. Use your
195195
migration tool of choice to create the necessary database tables and objects

docs/reference/changelog.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## [1.19.1](https://github.com/kyleconroy/sqlc/releases/tag/v1.19.1)
4+
## [1.19.1](https://github.com/sqlc-dev/sqlc/releases/tag/v1.19.1)
55
Released 2023-07-13
66

77
### Bug Fixes
@@ -21,7 +21,7 @@ Released 2023-07-13
2121
- Pin Go to 1.20.6 (#2441)
2222
- (deps) Bump github.com/jackc/pgx/v5 from 5.4.1 to 5.4.2 (#2436)
2323

24-
## [1.19.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.19.0)
24+
## [1.19.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.19.0)
2525
Released 2023-07-06
2626

2727
### Release notes
@@ -99,7 +99,7 @@ sql:
9999
```
100100

101101
To see this in action, check out the [authors
102-
example](https://github.com/kyleconroy/sqlc/blob/main/examples/authors/sqlc.yaml).
102+
example](https://github.com/sqlc-dev/sqlc/blob/main/examples/authors/sqlc.yaml).
103103

104104
Please note that `sqlc` does not manage or migrate your database. Use your
105105
migration tool of choice to create the necessary database tables and objects
@@ -235,7 +235,7 @@ longer requires [TinyGo](https://tinygo.org/).
235235
- Fixed sqlite column type override (#1986)
236236

237237

238-
## [1.18.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.18.0)
238+
## [1.18.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.18.0)
239239
Released 2023-04-27
240240

241241
### Release notes
@@ -494,14 +494,14 @@ genreated method will use a argument struct.
494494
495495
- Upgrade to wasmtime v8.0.0 (#2222)
496496
497-
## [1.17.2](https://github.com/kyleconroy/sqlc/releases/tag/v1.17.2)
497+
## [1.17.2](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.2)
498498
Released 2023-02-22
499499
500500
### Bug Fixes
501501
502502
- Fix build on Windows (#2102)
503503
504-
## [1.17.1](https://github.com/kyleconroy/sqlc/releases/tag/v1.17.1)
504+
## [1.17.1](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.1)
505505
Released 2023-02-22
506506
507507
### Bug Fixes
@@ -518,7 +518,7 @@ Released 2023-02-22
518518
519519
- (deps) Bump golang from 1.20.0 to 1.20.1 (#2082)
520520
521-
## [1.17.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.17.0)
521+
## [1.17.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.0)
522522
Released 2023-02-13
523523
524524
### Bug Fixes
@@ -594,7 +594,7 @@ Released 2023-02-13
594594
595595
- Upgrade to wasmtime 5.0.0 (#2065)
596596
597-
## [1.16.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.16.0)
597+
## [1.16.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.16.0)
598598
Released 2022-11-09
599599
600600
@@ -666,7 +666,7 @@ Released 2022-11-09
666666
- Port all Python tests to sqlc-gen-python (#1907)
667667
- Upgrade to sqlc-gen-python v1.0.0 (#1932)
668668
669-
## [1.15.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.15.0)
669+
## [1.15.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.15.0)
670670
Released 2022-08-07
671671
672672
### Bug Fixes
@@ -715,7 +715,7 @@ Released 2022-08-07
715715
- (wasm) Change default cache location (#1709)
716716
- (wasm) Change the SHA-256 config key (#1710)
717717
718-
## [1.14.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.14.0)
718+
## [1.14.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.14.0)
719719
Released 2022-06-09
720720
721721
### Bug Fixes
@@ -762,7 +762,7 @@ Released 2022-06-09
762762
- (sql/catalog) Improve Readability (#1595)
763763
- Add basic fuzzing for config / overrides (#1500)
764764
765-
## [1.13.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.13.0)
765+
## [1.13.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.13.0)
766766
Released 2022-03-31
767767
768768
### Bug Fixes
@@ -800,7 +800,7 @@ Released 2022-03-31
800800
801801
- Add basic fuzzing for config / overrides (#1500)
802802
803-
## [1.12.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.12.0)
803+
## [1.12.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.12.0)
804804
Released 2022-02-05
805805
806806
### Bug
@@ -843,7 +843,7 @@ Released 2022-02-05
843843
- Bump github.com/google/go-cmp from 0.5.6 to 0.5.7 (#1382)
844844
- Format all Go code (#1387)
845845
846-
## [1.11.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.11.0)
846+
## [1.11.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.11.0)
847847
Released 2021-11-24
848848
849849
@@ -908,7 +908,7 @@ Released 2021-11-24
908908
909909
- Bump version to v1.11.0
910910
911-
## [1.10.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.10.0)
911+
## [1.10.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.10.0)
912912
Released 2021-09-07
913913
914914
@@ -952,7 +952,7 @@ Released 2021-09-07
952952
953953
- Output NullUUID when necessary (#1137)
954954
955-
## [1.9.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.9.0)
955+
## [1.9.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.9.0)
956956
Released 2021-08-13
957957
958958
@@ -973,7 +973,7 @@ Released 2021-08-13
973973
- Add tests for COALESCE behavior (#1112)
974974
- Handle subqueries in SELECT statements (#1113)
975975
976-
## [1.8.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.8.0)
976+
## [1.8.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.8.0)
977977
Released 2021-05-03
978978
979979
@@ -1032,7 +1032,7 @@ Released 2021-05-03
10321032
10331033
- Only run tests once (#924)
10341034
1035-
## [1.7.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.7.0)
1035+
## [1.7.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.7.0)
10361036
Released 2021-02-28
10371037
10381038
@@ -1118,7 +1118,7 @@ Released 2021-02-28
11181118
11191119
- Add enum values for SetOperation
11201120
1121-
## [1.6.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.6.0)
1121+
## [1.6.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.6.0)
11221122
Released 2020-11-23
11231123
11241124
@@ -1209,7 +1209,7 @@ Released 2020-11-23
12091209
12101210
- Add support for variadic functions (#798)
12111211
1212-
## [1.5.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.5.0)
1212+
## [1.5.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.5.0)
12131213
Released 2020-08-05
12141214
12151215
@@ -1312,7 +1312,7 @@ Released 2020-08-05
13121312
13131313
- Migrate to equinox-io/setup-release-tool (#614)
13141314
1315-
## [1.4.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.4.0)
1315+
## [1.4.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.4.0)
13161316
Released 2020-06-17
13171317
13181318
@@ -1402,7 +1402,7 @@ Released 2020-06-17
14021402
14031403
- Move query validation to separate package (#498)
14041404
1405-
## [1.3.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.3.0)
1405+
## [1.3.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.3.0)
14061406
Released 2020-05-12
14071407
14081408
@@ -1447,7 +1447,7 @@ Released 2020-05-12
14471447
14481448
- Fix panic walking CreateTableAsStmt (#475)
14491449
1450-
## [1.2.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.2.0)
1450+
## [1.2.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.2.0)
14511451
Released 2020-04-07
14521452
14531453
@@ -1477,7 +1477,7 @@ Released 2020-04-07
14771477
14781478
- Generate correct types for SELECT EXISTS (#411)
14791479
1480-
## [1.1.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.1.0)
1480+
## [1.1.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.1.0)
14811481
Released 2020-03-17
14821482
14831483
@@ -1567,7 +1567,7 @@ Released 2020-03-17
15671567
15681568
- Add experimental parser for SQLite
15691569
1570-
## [1.0.0](https://github.com/kyleconroy/sqlc/releases/tag/v1.0.0)
1570+
## [1.0.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.0.0)
15711571
Released 2020-02-18
15721572
15731573
@@ -1654,7 +1654,7 @@ Released 2020-02-18
16541654
- Attach range vars to insert params (#342)
16551655
- Remove dead code (#343)
16561656
1657-
## [0.1.0](https://github.com/kyleconroy/sqlc/releases/tag/v0.1.0)
1657+
## [0.1.0](https://github.com/sqlc-dev/sqlc/releases/tag/v0.1.0)
16581658
Released 2020-01-07
16591659
16601660

docs/reference/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ sql:
225225
Each mapping of the `overrides` collection has the following keys:
226226

227227
- `db_type`:
228-
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available. Can't be used if the `column` key is defined.
228+
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available. Can't be used if the `column` key is defined.
229229
- `column`:
230230
- In case the type overriding should be done on specific a column of a table instead of a type. `column` should be of the form `table.column` but you can be even more specific by specifying `schema.table.column` or `catalog.schema.table.column`. Can't be used if the `db_type` key is defined.
231231
- `go_type`:
@@ -547,7 +547,7 @@ overrides:
547547
Each override document has the following keys:
548548

549549
- `db_type`:
550-
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/kyleconroy/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available.
550+
- The PostgreSQL or MySQL type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use the pg_catalog prefixed names where available.
551551
- `go_type`:
552552
- A fully qualified name to a Go type to use in the generated code.
553553
- `go_struct_tag`:

docs/reference/language-support.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ F# `kaashyapan/sqlc-gen-fsharp`_ Not implemented Beta Beta
2525
Future language support
2626
************************
2727

28-
- `C# <https://github.com/kyleconroy/sqlc/issues/373>`_
29-
- `TypeScript <https://github.com/kyleconroy/sqlc/issues/296>`_
28+
- `C# <https://github.com/sqlc-dev/sqlc/issues/373>`_
29+
- `TypeScript <https://github.com/sqlc-dev/sqlc/issues/296>`_

0 commit comments

Comments
 (0)