From b358ba387a4153013577b78c7f3866c1c3bc5ab3 Mon Sep 17 00:00:00 2001 From: rayakame <202957330+rayakame@users.noreply.github.com> Date: Tue, 1 Apr 2025 01:47:07 +0000 Subject: [PATCH 1/3] Release v0.1.0 --- .changes/unreleased/Added-20250401-013109.yaml | 6 ------ .changes/unreleased/Added-20250401-032927.yaml | 6 ------ .changes/unreleased/Changed-20250401-022038.yaml | 6 ------ .changes/v0.1.0.md | 6 ++++++ CHANGELOG.md | 7 +++++++ internal/core/config.go | 2 +- 6 files changed, 14 insertions(+), 19 deletions(-) delete mode 100644 .changes/unreleased/Added-20250401-013109.yaml delete mode 100644 .changes/unreleased/Added-20250401-032927.yaml delete mode 100644 .changes/unreleased/Changed-20250401-022038.yaml create mode 100644 .changes/v0.1.0.md diff --git a/.changes/unreleased/Added-20250401-013109.yaml b/.changes/unreleased/Added-20250401-013109.yaml deleted file mode 100644 index 2381bf0..0000000 --- a/.changes/unreleased/Added-20250401-013109.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Added -body: Added support for driver `sqlite3` -time: 2025-04-01T01:31:09.0893687+02:00 -custom: - Author: rayakame - PR: "17" diff --git a/.changes/unreleased/Added-20250401-032927.yaml b/.changes/unreleased/Added-20250401-032927.yaml deleted file mode 100644 index e4a60a9..0000000 --- a/.changes/unreleased/Added-20250401-032927.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Added -body: Added support for `sqlc.embed()` -time: 2025-04-01T03:29:27.9306375+02:00 -custom: - Author: rayakame - PR: "21" diff --git a/.changes/unreleased/Changed-20250401-022038.yaml b/.changes/unreleased/Changed-20250401-022038.yaml deleted file mode 100644 index 9b060fb..0000000 --- a/.changes/unreleased/Changed-20250401-022038.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Changed -body: Query functions now dont take param-structs -time: 2025-04-01T02:20:38.5896761+02:00 -custom: - Author: rayakame - PR: "20" diff --git a/.changes/v0.1.0.md b/.changes/v0.1.0.md new file mode 100644 index 0000000..40d56b8 --- /dev/null +++ b/.changes/v0.1.0.md @@ -0,0 +1,6 @@ +## v0.1.0 - 2025-04-01 +### Added +* [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (rayakame) +* [#21](https://github.com/rayakame/sqlc-gen-better-python/pull/21) Added support for `sqlc.embed()` (rayakame) +### Changed +* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now dont take param-structs (rayakame) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6205b4..9c9e068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## v0.1.0 - 2025-04-01 +### Added +* [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (rayakame) +* [#21](https://github.com/rayakame/sqlc-gen-better-python/pull/21) Added support for `sqlc.embed()` (rayakame) +### Changed +* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now dont take param-structs (rayakame) + ## v0.0.1 - 2025-03-31 ### Added * [#13](https://github.com/rayakame/sqlc-gen-better-python/pull/13) Added `emit_classes` config option that, if enabled, puts all the queries into classes (rayakame) diff --git a/internal/core/config.go b/internal/core/config.go index d3d0ae3..1267065 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.0.1" +const PluginVersion = "v0.1.0" type Config struct { Package string `json:"package" yaml:"package"` From 441e190ebd56a813035019949234915d75ce2c95 Mon Sep 17 00:00:00 2001 From: Christopher Date: Tue, 1 Apr 2025 03:47:46 +0200 Subject: [PATCH 2/3] Update v0.1.0.md --- .changes/v0.1.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changes/v0.1.0.md b/.changes/v0.1.0.md index 40d56b8..130a571 100644 --- a/.changes/v0.1.0.md +++ b/.changes/v0.1.0.md @@ -3,4 +3,4 @@ * [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (rayakame) * [#21](https://github.com/rayakame/sqlc-gen-better-python/pull/21) Added support for `sqlc.embed()` (rayakame) ### Changed -* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now dont take param-structs (rayakame) +* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now don't take param-structs (rayakame) From 2e854eaa27d5e810938811f758b6d6baca856d3f Mon Sep 17 00:00:00 2001 From: Christopher Date: Tue, 1 Apr 2025 03:47:58 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9e068..e27ca3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ All notable changes to this project will be documented in this file. * [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (rayakame) * [#21](https://github.com/rayakame/sqlc-gen-better-python/pull/21) Added support for `sqlc.embed()` (rayakame) ### Changed -* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now dont take param-structs (rayakame) +* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now don't take param-structs (rayakame) ## v0.0.1 - 2025-03-31 ### Added