From dd9beb2aa965e144e1e9e69d08d4fcbbeacc0f0c Mon Sep 17 00:00:00 2001 From: rayakame <202957330+rayakame@users.noreply.github.com> Date: Mon, 5 May 2025 20:24:59 +0000 Subject: [PATCH] Release v0.2.0 --- .changes/unreleased/Added-20250505-215623.yaml | 6 ------ .changes/unreleased/Fixed-20250505-222154.yaml | 6 ------ .changes/v0.2.0.md | 5 +++++ CHANGELOG.md | 6 ++++++ internal/core/config.go | 2 +- 5 files changed, 12 insertions(+), 13 deletions(-) delete mode 100644 .changes/unreleased/Added-20250505-215623.yaml delete mode 100644 .changes/unreleased/Fixed-20250505-222154.yaml create mode 100644 .changes/v0.2.0.md diff --git a/.changes/unreleased/Added-20250505-215623.yaml b/.changes/unreleased/Added-20250505-215623.yaml deleted file mode 100644 index ce679e9..0000000 --- a/.changes/unreleased/Added-20250505-215623.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Added -body: Added early driver support for `asyncpg`. Only has support for `exec`, `many` and `one` -time: 2025-05-05T21:56:23.6920401+02:00 -custom: - Author: rayakame - PR: "29" diff --git a/.changes/unreleased/Fixed-20250505-222154.yaml b/.changes/unreleased/Fixed-20250505-222154.yaml deleted file mode 100644 index 0a30424..0000000 --- a/.changes/unreleased/Fixed-20250505-222154.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixed -body: Missing return statements for `:execresult`, `:execrows` and `:execlastid` for `aiosqlite` and `sqlite3` -time: 2025-05-05T22:21:54.7215073+02:00 -custom: - Author: rayakame - PR: "31" diff --git a/.changes/v0.2.0.md b/.changes/v0.2.0.md new file mode 100644 index 0000000..55d526b --- /dev/null +++ b/.changes/v0.2.0.md @@ -0,0 +1,5 @@ +## v0.2.0 - 2025-05-05 +### Added +* [#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) +### Fixed +* [#31](https://github.com/rayakame/sqlc-gen-better-python/pull/31) Missing return statements for `:execresult`, `:execrows` and `:execlastid` for `aiosqlite` and `sqlite3` (rayakame) diff --git a/CHANGELOG.md b/CHANGELOG.md index e27ca3a..16a53d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## v0.2.0 - 2025-05-05 +### Added +* [#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) +### Fixed +* [#31](https://github.com/rayakame/sqlc-gen-better-python/pull/31) Missing return statements for `:execresult`, `:execrows` and `:execlastid` for `aiosqlite` and `sqlite3` (rayakame) + ## v0.1.0 - 2025-04-01 ### Added * [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (rayakame) diff --git a/internal/core/config.go b/internal/core/config.go index 1267065..9c569bc 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.1.0" +const PluginVersion = "v0.2.0" type Config struct { Package string `json:"package" yaml:"package"`