Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changes/unreleased/Added-20250831-182122.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Added-20250903-021638.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Dependencys-20250903-032902.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions .changes/v0.4.5.md
Original file line number Diff line number Diff line change
@@ -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))
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion internal/core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down