Skip to content

Commit 5e88bef

Browse files
committed
Prepare 0.4.1 release
1 parent 5fb3fb9 commit 5e88bef

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Unreleased
22

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.
48

59
# 0.4.0
610

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["rust-query-macros"]
33

44
[package]
55
name = "rust-query"
6-
version = "0.4.0"
6+
version = "0.4.1"
77
edition = "2024"
88
description = "A query builder using rust concepts."
99
categories = ["database"]
@@ -17,7 +17,7 @@ sea-query = "0.32"
1717
sea-query-rusqlite = "0.7"
1818
rusqlite = { version = "0.32", features = ["modern_sqlite", "unlock_notify"] }
1919
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" }
2121
ref-cast = "1.0.23"
2222
pretty_assertions = "1.4.0"
2323
r2d2_sqlite = "0.25.0"

rust-query-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-query-macros"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
description = "Proc-macro crate for rust-query."
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)