From acfe81cccfcf817b9b4317157740ebd6795baeee Mon Sep 17 00:00:00 2001 From: "Randolf J." Date: Mon, 13 Apr 2026 04:11:48 -0700 Subject: [PATCH] chore(main): release 0.1.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c05df9b..88f7c73 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.3" + ".": "0.1.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b78f56..62aaf41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.4](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.3...v0.1.4) (2026-04-13) + + +### Features + +* Add Queries::into_inner ([#6](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/6)) ([5e5058e](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/5e5058e0a0e05ac566cb81e1d9d292dac3797007)) +* Initial commit ([e8693f3](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/e8693f3a6e100726a1c24422bca6c99fdc16ad07)) +* Support PoolConnection via AsExecutor trait ([#4](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/4)) ([0db4bde](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/0db4bde43c0b4812717a1fd1239dc7c1cd37ad83)) + ## [0.1.3](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.2...v0.1.3) (2026-04-13) diff --git a/Cargo.lock b/Cargo.lock index 99b1f87..805715c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2287,7 +2287,7 @@ dependencies = [ [[package]] name = "sqlc-gen-sqlx" -version = "0.1.3" +version = "0.1.4" dependencies = [ "buffa", "convert_case", diff --git a/Cargo.toml b/Cargo.toml index dfd01ef..50f115e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ serde_json = "1" [package] name = "sqlc-gen-sqlx" -version = "0.1.3" +version = "0.1.4" edition = "2024" license = "MIT OR Apache-2.0" description = "A sqlc plugin that generates type-safe sqlx Rust code from SQL queries."