Skip to content

Commit 56853ec

Browse files
committed
Release 0.3.2
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
1 parent 094328c commit 56853ec

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

1010

11+
## [0.3.2] - 2025-02-03
12+
13+
### Fixed
14+
- Catch duplicate compile-time bindings and cyclical compile-time binding references.
15+
([#26](https://github.com/kyrias/sqlx-conditional-queries/pull/26))
16+
17+
1118
## [0.3.1] - 2025-01-09
1219

1320
### Changed
@@ -63,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6370
- Fixed bug introduced when removing brace escaping support that lead to out-of-bound panics when two bound parameter references were too far apart. ([#4](https://github.com/kyrias/sqlx-conditional-queries/issues/4))
6471

6572

66-
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.1...main
73+
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.2...main
74+
[0.3.1]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.1...0.3.2
6775
[0.3.1]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.0...0.3.1
6876
[0.3.0]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.1...0.3.0
6977
[0.2.1]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.0...0.2.1

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["core", "macros"]
33

44
[package]
55
name = "sqlx-conditional-queries"
6-
version = "0.3.1"
6+
version = "0.3.2"
77
edition = "2021"
88
description = "Compile-time conditional queries for SQLx"
99
repository = "https://github.com/kyrias/sqlx-conditional-queries"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-conditional-queries-core"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
description = "Internal functions for sqlx-conditional-queries"
66
repository = "https://github.com/kyrias/sqlx-conditional-queries"

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-conditional-queries-macros"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
description = "Macro definition for sqlx-conditional-queries"
66
repository = "https://github.com/kyrias/sqlx-conditional-queries"

0 commit comments

Comments
 (0)