Skip to content

Commit 1c24396

Browse files
Release v0.3.0 (#42)
* Release v0.3.0 * chore: update prepare_release.yml Added labels: skip-fragment-check in prepare_release.yml (release/v0.3.0) --------- Co-authored-by: rayakame <202957330+rayakame@users.noreply.github.com> Co-authored-by: Rayakame <github.android206@passmail.net>
1 parent 876438a commit 1c24396

File tree

9 files changed

+20
-32
lines changed

9 files changed

+20
-32
lines changed

.changes/unreleased/Added-20250505-224722.yaml

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

.changes/unreleased/Added-20250505-234435.yaml

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

.changes/unreleased/Added-20250505-235032.yaml

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

.changes/unreleased/Added-20250506-000639.yaml

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

.changes/unreleased/Fixed-20250506-001607.yaml

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

.changes/v0.3.0.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## v0.3.0 - 2025-05-05
2+
### Added
3+
* [#37](https://github.com/rayakame/sqlc-gen-better-python/pull/37) Added `debug` config option to enable debug output. (rayakame)
4+
* [#38](https://github.com/rayakame/sqlc-gen-better-python/pull/38) Added documentation for every configuration option in the `README`. (rayakame)
5+
* [#39](https://github.com/rayakame/sqlc-gen-better-python/pull/39) Added `emit_init_file` configuration option to control `__init__.py` creation. (rayakame)
6+
* [#40](https://github.com/rayakame/sqlc-gen-better-python/pull/40) Added support for `msgspec` model type. (rayakame)
7+
### Fixed
8+
* [#41](https://github.com/rayakame/sqlc-gen-better-python/pull/41) Fixed missing empty lines when using `asyncpg` driver. (rayakame)

.github/workflows/prepare_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ jobs:
5353
with:
5454
title: Release ${{ steps.latest.outputs.output }}
5555
branch: release/${{ steps.latest.outputs.output }}
56-
commit-message: Release ${{ steps.latest.outputs.output }}
56+
commit-message: Release ${{ steps.latest.outputs.output }}
57+
labels: skip-fragment-check

CHANGELOG.md

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

44

5+
## v0.3.0 - 2025-05-05
6+
### Added
7+
* [#37](https://github.com/rayakame/sqlc-gen-better-python/pull/37) Added `debug` config option to enable debug output. (rayakame)
8+
* [#38](https://github.com/rayakame/sqlc-gen-better-python/pull/38) Added documentation for every configuration option in the `README`. (rayakame)
9+
* [#39](https://github.com/rayakame/sqlc-gen-better-python/pull/39) Added `emit_init_file` configuration option to control `__init__.py` creation. (rayakame)
10+
* [#40](https://github.com/rayakame/sqlc-gen-better-python/pull/40) Added support for `msgspec` model type. (rayakame)
11+
### Fixed
12+
* [#41](https://github.com/rayakame/sqlc-gen-better-python/pull/41) Fixed missing empty lines when using `asyncpg` driver. (rayakame)
13+
514
## v0.2.0 - 2025-05-05
615
### Added
716
* [#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)

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

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

0 commit comments

Comments
 (0)