Skip to content

Commit fd9e21b

Browse files
committed
Release 0.3.1
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
1 parent 7463f7b commit fd9e21b

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.1] - 2025-01-09
12+
13+
### Changed
14+
- Switch from `proc-macro-error` to `proc-macro-error2`.
15+
([#24](https://github.com/kyrias/sqlx-conditional-queries/pull/24))
16+
17+
1118
## [0.3.0] - 2025-01-07
1219

1320
### Fixed
@@ -56,7 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5663
- 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))
5764

5865

59-
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.0...main
66+
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.1...main
67+
[0.3.1]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.0...0.3.1
6068
[0.3.0]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.1...0.3.0
6169
[0.2.1]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.0...0.2.1
6270
[0.2.0]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.4...0.2.0

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.0"
6+
version = "0.3.1"
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.0"
3+
version = "0.3.1"
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.0"
3+
version = "0.3.1"
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)