Skip to content

Commit 9821492

Browse files
Release v0.4.4 (#113)
Co-authored-by: rayakame <[email protected]>
1 parent 7d9f9ec commit 9821492

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

.changes/unreleased/Changed-20250531-000842.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/Fixed-20250531-000749.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/v0.4.4.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## v0.4.4 - 2025-05-30
2+
### Changed
3+
* [#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))
4+
### Fixed
5+
* [#112](https://github.com/rayakame/sqlc-gen-better-python/pull/112) Added `columns` kwarg to `:copyfrom` for `asyncpg` to fix inserts for columns with default values ([rayakame](https://github.com/rayakame))

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33

44

5+
## v0.4.4 - 2025-05-30
6+
### Changed
7+
* [#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))
8+
### Fixed
9+
* [#112](https://github.com/rayakame/sqlc-gen-better-python/pull/112) Added `columns` kwarg to `:copyfrom` for `asyncpg` to fix inserts for columns with default values ([rayakame](https://github.com/rayakame))
10+
511
## v0.4.3 - 2025-05-28
612
### Fixed
713
* [#109](https://github.com/rayakame/sqlc-gen-better-python/pull/109) Fixed missing model import when using `:copyfrom` cmd. ([rayakame](https://github.com/rayakame))

internal/core/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/sqlc-dev/plugin-sdk-go/plugin"
77
)
88

9-
const PluginVersion = "v0.4.3"
9+
const PluginVersion = "v0.4.4"
1010

1111
type Config struct {
1212
Package string `json:"package" yaml:"package"`

0 commit comments

Comments
 (0)