Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changes/unreleased/Added-20250401-003545.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/unreleased/Added-20250401-004659.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions .changes/v0.0.1.md
Original file line number Diff line number Diff line change
@@ -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)
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion internal/core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down