Skip to content

Commit d300bea

Browse files
authored
docs: Update migration guides with links (#1933)
1 parent 5a927f3 commit d300bea

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/guides/migrating-to-sqlc-gen-kotlin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Starting in sqlc 1.16.0, built-in Kotlin support has been deprecated. It will
44
be fully removed in 1.17.0 in favor of sqlc-gen-kotlin.
55

6-
This guide will walk you through migrating to the [sqlc-gen-kotlin] plugin,
6+
This guide will walk you through migrating to the [sqlc-gen-kotlin](https://github.com/tabbed/sqlc-gen-kotlin) plugin,
77
which involves three steps.
88

99
1. Add the sqlc-gen-kotlin plugin

docs/guides/migrating-to-sqlc-gen-python.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Starting in sqlc 1.16.0, built-in Python support has been deprecated. It will
44
be fully removed in 1.17.0 in favor of sqlc-gen-python.
55

6-
This guide will walk you through migrating to the [sqlc-gen-python] plugin,
6+
This guide will walk you through migrating to the [sqlc-gen-python](https://github.com/tabbed/sqlc-gen-python) plugin,
77
which involves three steps.
88

99
1. Add the sqlc-gen-python plugin
@@ -22,8 +22,8 @@ already. Add the following configuration for the plugin:
2222
{
2323
"name": "py",
2424
"wasm": {
25-
"url": "https://downloads.sqlc.dev/plugins/sqlc-gen-python_0.16.0.wasm",
26-
"sha256": "FIXME"
25+
"url": "https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.0.0.wasm",
26+
"sha256": "aca83e1f59f8ffdc604774c2f6f9eb321a2b23e07dc83fc12289d25305fa065b"
2727
}
2828
}
2929
]
@@ -33,10 +33,10 @@ already. Add the following configuration for the plugin:
3333
```yaml
3434
version: "2"
3535
plugins:
36-
name: py,
36+
name: "py"
3737
wasm:
38-
url: "https://downloads.sqlc.dev/plugins/sqlc-gen-python_0.16.0.wasm"
39-
sha256: "FIXME"
38+
url: "https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.0.0.wasm"
39+
sha256: "aca83e1f59f8ffdc604774c2f6f9eb321a2b23e07dc83fc12289d25305fa065b"
4040
```
4141
4242
## Migrate each package

0 commit comments

Comments
 (0)