From b155a3057110faa2d229dd44a94305b1825bd098 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 27 Aug 2026 02:20:06 +0000 Subject: [PATCH 1/2] chore(main): release 0.2.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 949ce4c..0451499 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.2" + ".": "0.2.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a55353..9db37ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.3](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.2.2...v0.2.3) (2026-08-27) + + +### Bug Fixes + +* **deps:** Use SQLx BitVec re-export ([#27](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/27)) ([28ed046](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/28ed046c77b5b3534769512e6d0d95a06716ac51)) + ## [0.2.2](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.2.1...v0.2.2) (2026-07-01) diff --git a/Cargo.lock b/Cargo.lock index e842d00..9f0a094 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2306,7 +2306,7 @@ dependencies = [ [[package]] name = "sqlc-gen-sqlx" -version = "0.2.2" +version = "0.2.3" dependencies = [ "buffa", "convert_case", diff --git a/Cargo.toml b/Cargo.toml index f0bb238..f33efe0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlc-gen-sqlx" -version = "0.2.2" +version = "0.2.3" edition = "2024" description = "A sqlc plugin that generates type-safe sqlx Rust code from SQL queries." repository = "https://github.com/mathematic-inc/sqlc-gen-sqlx" From 84372a027cecb2c156f5a050ce03c3de1c72c023 Mon Sep 17 00:00:00 2001 From: Jared Randall Date: Wed, 26 Aug 2026 19:23:14 -0700 Subject: [PATCH 2/2] chore(release): format 0.2.3 metadata --- CHANGELOG.md | 14 +------------- Cargo.toml | 4 ++++ 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9db37ab..ce17697 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,28 +2,24 @@ ## [0.2.3](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.2.2...v0.2.3) (2026-08-27) - ### Bug Fixes * **deps:** Use SQLx BitVec re-export ([#27](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/27)) ([28ed046](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/28ed046c77b5b3534769512e6d0d95a06716ac51)) ## [0.2.2](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.2.1...v0.2.2) (2026-07-01) - ### Features * Export generated SQL constants ([597babb](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/597babb1a5905fdaaceb681971418e976669cb70)) ## [0.2.1](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.2.0...v0.2.1) (2026-05-18) - ### Features * Support borrowed parameter types via borrowed_rs_type override ([#19](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/19)) ([6ce89a3](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/6ce89a3292b64ea0f2f0634d409a3f8e20ea831a)) ## [0.2.0](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.7...v0.2.0) (2026-05-09) - ### ⚠ BREAKING CHANGES * callers using Queries::new(executor).foo(...) must switch to queries::foo(executor, ...). @@ -34,28 +30,24 @@ ## [0.1.7](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.6...v0.1.7) (2026-04-22) - ### Bug Fixes * Omit trailing next_placeholder increment after last param ([#15](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/15)) ([6bb1b7e](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/6bb1b7e75ca835bc79f98e855a9ca7293f12a6c4)) ## [0.1.6](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.5...v0.1.6) (2026-04-19) - ### Bug Fixes -* Emit rustfmt-compliant #![allow] header ([#13](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/13)) ([04acf9a](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/04acf9ada1b67c9de37489dc894fff6fc773b301)) +* Emit rustfmt-compliant `#![allow]` header ([#13](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/13)) ([04acf9a](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/04acf9ada1b67c9de37489dc894fff6fc773b301)) ## [0.1.5](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.4...v0.1.5) (2026-04-14) - ### Features * Derive Copy and Clone on Queries ([#11](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/11)) ([c33d55f](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/c33d55fa526d22b7551d5b858cec51023d7359f9)) ## [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)) @@ -64,28 +56,24 @@ ## [0.1.3](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.2...v0.1.3) (2026-04-13) - ### Code Refactoring * Simplify AsExecutor to use return-position impl Trait ([#8](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/8)) ## [0.1.2](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.1...v0.1.2) (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)) ## [0.1.1](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.0...v0.1.1) (2026-04-13) - ### Features * 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.0 (2026-04-13) - ### Features * Initial commit ([e8693f3](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/e8693f3a6e100726a1c24422bca6c99fdc16ad07)) diff --git a/Cargo.toml b/Cargo.toml index f33efe0..17014c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,9 @@ [package] name = "sqlc-gen-sqlx" +# When releasing to crates.io: +# - Remove path dependencies (if any) +# - Update CHANGELOG.md +# - Create a v0.2.x tag version = "0.2.3" edition = "2024" description = "A sqlc plugin that generates type-safe sqlx Rust code from SQL queries."