diff --git a/.changes/unreleased/Added-20250401-003545.yaml b/.changes/unreleased/Added-20250401-003545.yaml deleted file mode 100644 index a5abb09..0000000 --- a/.changes/unreleased/Added-20250401-003545.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Added -body: Added `emit_classes` config option that, if enabled, puts all the queries into classes -time: 2025-04-01T00:35:45.5676193+02:00 -custom: - Author: rayakame - PR: "13" diff --git a/.changes/unreleased/Added-20250401-004659.yaml b/.changes/unreleased/Added-20250401-004659.yaml deleted file mode 100644 index 3503d68..0000000 --- a/.changes/unreleased/Added-20250401-004659.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Added -body: Added changelog functionality -time: 2025-04-01T00:46:59.2722211+02:00 -custom: - Author: rayakame - PR: "14" diff --git a/.changes/v0.0.1.md b/.changes/v0.0.1.md new file mode 100644 index 0000000..0567253 --- /dev/null +++ b/.changes/v0.0.1.md @@ -0,0 +1,4 @@ +## 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) +* [#14](https://github.com/rayakame/sqlc-gen-better-python/pull/14) Added changelog functionality (rayakame) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..a6205b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog +All notable changes to this project will be documented in this file. + + +## 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) +* [#14](https://github.com/rayakame/sqlc-gen-better-python/pull/14) Added changelog functionality (rayakame) diff --git a/internal/core/config.go b/internal/core/config.go index 29404bf..d3d0ae3 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 = "0.0.1" +const PluginVersion = "v0.0.1" type Config struct { Package string `json:"package" yaml:"package"`