Commit 456b684 1 parent 6fdfb79 commit 456b684 Copy full SHA for 456b684
File tree 4 files changed +21
-11
lines changed
4 files changed +21
-11
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
## [ Unreleased]
9
9
10
10
11
+ ## [ 0.3.0] - 2025-01-07
12
+
13
+ ### Fixed
14
+ - Fix queries only containing run-time bound parameters.
15
+ ([ #20 ] ( https://github.com/kyrias/sqlx-conditional-queries/issues/20 ) ,
16
+ [ #22 ] ( https://github.com/kyrias/sqlx-conditional-queries/pull/22 ) )
17
+
18
+ ### Changed
19
+ - Upgrade all dependencies.
20
+ ([ #23 ] ( https://github.com/kyrias/sqlx-conditional-queries/pull/23 ) )
21
+ - Made ` sqlx-conditional-queries-core ` take database type at run-time.
22
+ ([ #21 ] ( https://github.com/kyrias/sqlx-conditional-queries/pull/21 ) )
23
+
24
+
11
25
## [ 0.2.1] - 2024-08-19
12
26
13
27
### Fixed
@@ -42,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
42
56
- 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 ) )
43
57
44
58
45
- [ Unreleased ] : https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.1...main
59
+ [ Unreleased ] : https://github.com/kyrias/sqlx-conditional-queries/compare/0.3.0...main
60
+ [ 0.3.0 ] : https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.1...0.3.0
46
61
[ 0.2.1 ] : https://github.com/kyrias/sqlx-conditional-queries/compare/0.2.0...0.2.1
47
62
[ 0.2.0 ] : https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.4...0.2.0
48
63
[ 0.1.3 ] : https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.3...0.1.4
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ members = ["core", "macros"]
3
3
4
4
[package ]
5
5
name = " sqlx-conditional-queries"
6
- version = " 0.2.1 "
6
+ version = " 0.3.0 "
7
7
edition = " 2021"
8
8
description = " Compile-time conditional queries for SQLx"
9
9
repository = " https://github.com/kyrias/sqlx-conditional-queries"
@@ -16,7 +16,7 @@ features = ["postgres"]
16
16
17
17
[dependencies ]
18
18
futures-core = " 0.3.31"
19
- sqlx-conditional-queries-macros = { path = " macros" , version = " 0.2 " }
19
+ sqlx-conditional-queries-macros = { path = " macros" , version = " 0.3 " }
20
20
21
21
[features ]
22
22
mysql = [" sqlx-conditional-queries-macros/mysql" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sqlx-conditional-queries-core"
3
- version = " 0.2.1 "
3
+ version = " 0.3.0 "
4
4
edition = " 2021"
5
5
description = " Internal functions for sqlx-conditional-queries"
6
6
repository = " https://github.com/kyrias/sqlx-conditional-queries"
7
7
license = " MIT OR Apache-2.0"
8
8
9
- [features ]
10
- mysql = []
11
- postgres = []
12
- sqlite = []
13
-
14
9
[dependencies ]
15
10
itertools = " 0.14.0"
16
11
proc-macro2 = " 1.0.92"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sqlx-conditional-queries-macros"
3
- version = " 0.2.1 "
3
+ version = " 0.3.0 "
4
4
edition = " 2021"
5
5
description = " Macro definition for sqlx-conditional-queries"
6
6
repository = " https://github.com/kyrias/sqlx-conditional-queries"
@@ -12,7 +12,7 @@ proc-macro = true
12
12
[dependencies ]
13
13
proc-macro-error = " 1.0.4"
14
14
proc-macro2 = " 1.0.92"
15
- sqlx-conditional-queries-core = { path = " ../core" , version = " 0.2 " }
15
+ sqlx-conditional-queries-core = { path = " ../core" , version = " 0.3 " }
16
16
17
17
[features ]
18
18
mysql = []
You can’t perform that action at this time.
0 commit comments