diff --git a/.changes/unreleased/Added-20250831-182122.yaml b/.changes/unreleased/Added-20250831-182122.yaml deleted file mode 100644 index e2a596c..0000000 --- a/.changes/unreleased/Added-20250831-182122.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Added -body: Add `omit_typechecking_blocks` option -time: 2025-08-31T18:21:22.489913514+02:00 -custom: - Author: davfsa - PR: "122" diff --git a/.changes/unreleased/Added-20250903-021638.yaml b/.changes/unreleased/Added-20250903-021638.yaml deleted file mode 100644 index ab3a8e7..0000000 --- a/.changes/unreleased/Added-20250903-021638.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Added -body: Added config option `omit_kwargs_limit`. -time: 2025-09-03T02:16:38.516778+02:00 -custom: - Author: rayakame - PR: "124" diff --git a/.changes/unreleased/Dependencys-20250903-032902.yaml b/.changes/unreleased/Dependencys-20250903-032902.yaml deleted file mode 100644 index 4c211e4..0000000 --- a/.changes/unreleased/Dependencys-20250903-032902.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Dependencys -body: Updated sqlc to v1.30.0 used for testing the plugin -time: 2025-09-03T03:29:02.6926495+02:00 -custom: - Author: rayakame - PR: "125" diff --git a/.changes/v0.4.5.md b/.changes/v0.4.5.md new file mode 100644 index 0000000..e41068f --- /dev/null +++ b/.changes/v0.4.5.md @@ -0,0 +1,6 @@ +## v0.4.5 - 2025-09-03 +### Added +* [#122](https://github.com/rayakame/sqlc-gen-better-python/pull/122) Add `omit_typechecking_blocks` option ([davfsa](https://github.com/davfsa)) +* [#124](https://github.com/rayakame/sqlc-gen-better-python/pull/124) Added config option `omit_kwargs_limit`. ([rayakame](https://github.com/rayakame)) +### Dependencys +* [#125](https://github.com/rayakame/sqlc-gen-better-python/pull/125) Updated sqlc to v1.30.0 used for testing the plugin ([rayakame](https://github.com/rayakame)) diff --git a/CHANGELOG.md b/CHANGELOG.md index b086bcb..5c04e3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## v0.4.5 - 2025-09-03 +### Added +* [#122](https://github.com/rayakame/sqlc-gen-better-python/pull/122) Add `omit_typechecking_blocks` option ([davfsa](https://github.com/davfsa)) +* [#124](https://github.com/rayakame/sqlc-gen-better-python/pull/124) Added config option `omit_kwargs_limit`. ([rayakame](https://github.com/rayakame)) +### Dependencys +* [#125](https://github.com/rayakame/sqlc-gen-better-python/pull/125) Updated sqlc to v1.30.0 used for testing the plugin ([rayakame](https://github.com/rayakame)) + ## v0.4.4 - 2025-05-30 ### Changed * [#112](https://github.com/rayakame/sqlc-gen-better-python/pull/112) Improved `:execrows` performance for `asyncpg` and added speedup option for `:execrows` ([rayakame](https://github.com/rayakame)) diff --git a/internal/core/config.go b/internal/core/config.go index 65945e0..0d25a1e 100644 --- a/internal/core/config.go +++ b/internal/core/config.go @@ -6,7 +6,7 @@ import ( "github.com/sqlc-dev/plugin-sdk-go/plugin" ) -const PluginVersion = "v0.4.4" +const PluginVersion = "v0.4.5" type Config struct { Package string `json:"package" yaml:"package"`