diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 55c86c8..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.7" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e5a733..e8d7f63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [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, ...). + +### Features + +* Emit free functions instead of Queries<E> methods ([#17](https://github.com/mathematic-inc/sqlc-gen-sqlx/issues/17)) ([cd79857](https://github.com/mathematic-inc/sqlc-gen-sqlx/commit/cd79857eba012cf11e78a591209cdbdce07148a6)) + ## [0.1.7](https://github.com/mathematic-inc/sqlc-gen-sqlx/compare/v0.1.6...v0.1.7) (2026-04-22) diff --git a/Cargo.lock b/Cargo.lock index 759a93a..a761a0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2287,7 +2287,7 @@ dependencies = [ [[package]] name = "sqlc-gen-sqlx" -version = "0.1.7" +version = "0.2.0" dependencies = [ "buffa", "convert_case", diff --git a/Cargo.toml b/Cargo.toml index a62f1da..8440234 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ serde_json = "1" [package] name = "sqlc-gen-sqlx" -version = "0.1.7" +version = "0.2.0" edition = "2024" license = "MIT OR Apache-2.0" description = "A sqlc plugin that generates type-safe sqlx Rust code from SQL queries."