Skip to content

Commit 11d4535

Browse files
committed
Release 0.2.1
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
1 parent 592b636 commit 11d4535

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

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

1010

11+
## [0.2.1] - 2024-08-19
12+
13+
### Fixed
14+
- Internal dependency versions weren't updated in 0.2.0.
15+
16+
1117
## [0.2.0] - 2024-08-19
1218

1319
### Changed
@@ -36,7 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3642
- 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))
3743

3844

39-
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.0...main
45+
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.1...main
46+
[0.2.1]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.0...0.2.1
4047
[0.2.0]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.4...0.2.0
4148
[0.1.3]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.3...0.1.4
4249
[0.1.3]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.2...0.1.3

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ members = [
66

77
[package]
88
name = "sqlx-conditional-queries"
9-
version = "0.2.0"
9+
version = "0.2.1"
1010
edition = "2021"
1111
description = "Compile-time conditional queries for SQLx"
1212
repository = "https://github.com/kyrias/sqlx-conditional-queries"
@@ -19,7 +19,7 @@ features = ["postgres"]
1919

2020
[dependencies]
2121
futures-core = "0.3.30"
22-
sqlx-conditional-queries-macros = { path = "macros", version = "0.1" }
22+
sqlx-conditional-queries-macros = { path = "macros", version = "0.2" }
2323

2424
[features]
2525
mysql = ["sqlx-conditional-queries-macros/mysql"]

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.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
description = "Internal functions for sqlx-conditional-queries"
66
repository = "https://github.com/kyrias/sqlx-conditional-queries"

macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-conditional-queries-macros"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
description = "Macro definition for sqlx-conditional-queries"
66
repository = "https://github.com/kyrias/sqlx-conditional-queries"
@@ -12,7 +12,7 @@ proc-macro = true
1212
[dependencies]
1313
proc-macro-error = "1.0.4"
1414
proc-macro2 = "1.0.86"
15-
sqlx-conditional-queries-core = { path = "../core", version = "0.1" }
15+
sqlx-conditional-queries-core = { path = "../core", version = "0.2" }
1616

1717
[features]
1818
mysql = ["sqlx-conditional-queries-core/mysql"]

0 commit comments

Comments
 (0)