diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 001eb2c..c05df9b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.2" + ".": "0.1.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d67c0..8b78f56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [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) diff --git a/Cargo.lock b/Cargo.lock index ddb86fc..99b1f87 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2287,7 +2287,7 @@ dependencies = [ [[package]] name = "sqlc-gen-sqlx" -version = "0.1.2" +version = "0.1.3" dependencies = [ "buffa", "convert_case", diff --git a/Cargo.toml b/Cargo.toml index 8e9c5e8..dfd01ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ serde_json = "1" [package] name = "sqlc-gen-sqlx" -version = "0.1.2" +version = "0.1.3" edition = "2024" license = "MIT OR Apache-2.0" description = "A sqlc plugin that generates type-safe sqlx Rust code from SQL queries."