Skip to content

Commit 4d6e972

Browse files
Release v0.1.0 (#22)
* Release v0.1.0 * Update v0.1.0.md * Update CHANGELOG.md --------- Co-authored-by: rayakame <202957330+rayakame@users.noreply.github.com> Co-authored-by: Christopher <github.android206@passmail.net>
1 parent 928dd24 commit 4d6e972

File tree

6 files changed

+14
-19
lines changed

6 files changed

+14
-19
lines changed

.changes/unreleased/Added-20250401-013109.yaml

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

.changes/unreleased/Added-20250401-032927.yaml

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

.changes/unreleased/Changed-20250401-022038.yaml

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

.changes/v0.1.0.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## v0.1.0 - 2025-04-01
2+
### Added
3+
* [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (rayakame)
4+
* [#21](https://github.com/rayakame/sqlc-gen-better-python/pull/21) Added support for `sqlc.embed()` (rayakame)
5+
### Changed
6+
* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now don't take param-structs (rayakame)

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
All notable changes to this project will be documented in this file.
33

44

5+
## v0.1.0 - 2025-04-01
6+
### Added
7+
* [#17](https://github.com/rayakame/sqlc-gen-better-python/pull/17) Added support for driver `sqlite3` (rayakame)
8+
* [#21](https://github.com/rayakame/sqlc-gen-better-python/pull/21) Added support for `sqlc.embed()` (rayakame)
9+
### Changed
10+
* [#20](https://github.com/rayakame/sqlc-gen-better-python/pull/20) Query functions now don't take param-structs (rayakame)
11+
512
## v0.0.1 - 2025-03-31
613
### Added
714
* [#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)

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.0.1"
9+
const PluginVersion = "v0.1.0"
1010

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

0 commit comments

Comments
 (0)