File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
- - Revert "Insert and update conflict is now an ` Expr ` (` find_or_insert ` returns an ` Expr ` now too)."
3
+ # 0.4.1
4
+
5
+ - Change conflicts back to using ` TableRow ` instead of ` Expr ` .
6
+ Changing the conflict type to ` Expr ` was a mistake, because the ` Expr ` can be invalidated.
7
+ - Fix ` #[schema] ` macro not showing errors for unique constraints.
4
8
5
9
# 0.4.0
6
10
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ members = ["rust-query-macros"]
3
3
4
4
[package ]
5
5
name = " rust-query"
6
- version = " 0.4.0 "
6
+ version = " 0.4.1 "
7
7
edition = " 2024"
8
8
description = " A query builder using rust concepts."
9
9
categories = [" database" ]
@@ -17,7 +17,7 @@ sea-query = "0.32"
17
17
sea-query-rusqlite = " 0.7"
18
18
rusqlite = { version = " 0.32" , features = [" modern_sqlite" , " unlock_notify" ] }
19
19
k12 = {version = " 0.3" , optional = true }
20
- rust-query-macros = { path = " rust-query-macros" , version = " =0.4.0 " }
20
+ rust-query-macros = { path = " rust-query-macros" , version = " =0.4.1 " }
21
21
ref-cast = " 1.0.23"
22
22
pretty_assertions = " 1.4.0"
23
23
r2d2_sqlite = " 0.25.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rust-query-macros"
3
- version = " 0.4.0 "
3
+ version = " 0.4.1 "
4
4
edition = " 2021"
5
5
description = " Proc-macro crate for rust-query."
6
6
license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments