Skip to content

Commit a407f28

Browse files
Release v0.2.0 (#32)
Co-authored-by: rayakame <[email protected]>
1 parent 7cbce21 commit a407f28

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

.changes/unreleased/Added-20250505-215623.yaml

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

.changes/unreleased/Fixed-20250505-222154.yaml

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

.changes/v0.2.0.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## v0.2.0 - 2025-05-05
2+
### Added
3+
* [#29](https://github.com/rayakame/sqlc-gen-better-python/pull/29) Added early driver support for `asyncpg`. Only has support for `exec`, `many` and `one` (rayakame)
4+
### Fixed
5+
* [#31](https://github.com/rayakame/sqlc-gen-better-python/pull/31) Missing return statements for `:execresult`, `:execrows` and `:execlastid` for `aiosqlite` and `sqlite3` (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.2.0 - 2025-05-05
6+
### Added
7+
* [#29](https://github.com/rayakame/sqlc-gen-better-python/pull/29) Added early driver support for `asyncpg`. Only has support for `exec`, `many` and `one` (rayakame)
8+
### Fixed
9+
* [#31](https://github.com/rayakame/sqlc-gen-better-python/pull/31) Missing return statements for `:execresult`, `:execrows` and `:execlastid` for `aiosqlite` and `sqlite3` (rayakame)
10+
511
## v0.1.0 - 2025-04-01
612
### Added
713
* [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (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.1.0"
9+
const PluginVersion = "v0.2.0"
1010

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

0 commit comments

Comments
 (0)