Skip to content

Commit 207b672

Browse files
authored
chore: update README.md with v1 release note and query commands support (main) (#23)
1 parent 109013a commit 207b672

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ A WASM plugin for SQLC allowing the generation of Python code.
44

55
> [!NOTE]
66
> This is currently being worked on. It is far from being ready for any kind of release, let alone a stable one.
7-
> Please wait for the first GitHub release; before that, this plugin is likely to not work.
7+
> Please wait for the v1 release; before that, this plugin is likely to not work.
88
99
## Feature Support
10-
Every [sqlc macro](https://docs.sqlc.dev/en/latest/reference/macros.html) is supported.
11-
The supported Query commands depend on the SQL driver you are using, supported commands are listed below.
10+
Every [sqlc macro](https://docs.sqlc.dev/en/latest/reference/macros.html) is supported.
11+
The supported [query commands](https://docs.sqlc.dev/en/latest/reference/query-annotations.html) depend on the SQL driver you are using, supported commands are listed below.
1212
> Every `:batch*` command is not supported by this plugin and probably will never be.
1313
1414
> Prepared Queries are not planned for the near future, but will be implemented sooner or later

test/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Code generated by sqlc. DO NOT EDIT.
22
# versions:
33
# sqlc v1.28.0
4-
# sqlc-gen-better-python v0.0.1
4+
# sqlc-gen-better-python v0.1.0

test/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Code generated by sqlc. DO NOT EDIT.
22
# versions:
33
# sqlc v1.28.0
4-
# sqlc-gen-better-python v0.0.1
4+
# sqlc-gen-better-python v0.1.0
55
from __future__ import annotations
66

77
__all__: typing.Sequence[str] = (

test/queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Code generated by sqlc. DO NOT EDIT.
22
# versions:
33
# sqlc v1.28.0
4-
# sqlc-gen-better-python v0.0.1
4+
# sqlc-gen-better-python v0.1.0
55
from __future__ import annotations
66

77
__all__: typing.Sequence[str] = (

0 commit comments

Comments
 (0)