Skip to content

Commit edee7f5

Browse files
committed
Release 0.1.2
1 parent dccc4e1 commit edee7f5

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
11+
## [0.1.2] - 2023-02-16
12+
1013
### Fixed
1114

1215
- 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))
16+
17+
18+
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.2...main
19+
[0.1.2]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.1...0.1.2

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.1.1"
9+
version = "0.1.2"
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.25"
22-
sqlx-conditional-queries-macros = { path = "macros", version = "0.1.0" }
22+
sqlx-conditional-queries-macros = { path = "macros", version = "0.1.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.1.1"
3+
version = "0.1.2"
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.1.1"
3+
version = "0.1.2"
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.49"
15-
sqlx-conditional-queries-core = { path = "../core", version = "0.1.0" }
15+
sqlx-conditional-queries-core = { path = "../core", version = "0.1.2" }
1616

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

0 commit comments

Comments
 (0)