Skip to content

Commit 116a1a1

Browse files
committed
0.30.3
1 parent 91b68bb commit 116a1a1

File tree

8 files changed

+18
-8
lines changed

8 files changed

+18
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
target
2+
firedbg
23
Cargo.lock
34
*.sublime*
45
.vscode

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Main Branch
8+
## 0.30.3 - 2023-11-22
99

1010
### New Features
1111

1212
* Added `LTree` column type https://github.com/SeaQL/sea-query/pull/604
13+
* Improved parenthesis omission logic https://github.com/SeaQL/sea-query/pull/675
14+
15+
### Bug Fixes
16+
17+
* Fixed `BIGINT PRIMARY KEY AUTOINCREMENT` for SQLite https://github.com/SeaQL/sea-query/issues/689
18+
19+
### Upgrades
20+
21+
* Upgrade `chrono` to `0.4.27`
1322

1423
### Breaking changes
1524

16-
* Remove `ToTokens` for `PgInterval` https://github.com/SeaQL/sea-query/pull/710
25+
* Removed `ToTokens` for `PgInterval` https://github.com/SeaQL/sea-query/pull/710
1726

1827
### `sea-query-derive` 0.4.1 - 2023-10-19
1928

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "sea-query-derive"]
33

44
[package]
55
name = "sea-query"
6-
version = "0.31.0"
6+
version = "0.30.3"
77
authors = [
88
"Chris Tsang <[email protected]>",
99
"Billy Chan <[email protected]>",

sea-query-binder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.60"
1717
[lib]
1818

1919
[dependencies]
20-
sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] }
20+
sea-query = { version = "0.30", path = "..", default-features = false, features = ["thread-safe"] }
2121
sqlx = { version = "0.7", default-features = false, optional = true }
2222
serde_json = { version = "1", default-features = false, optional = true, features = ["std"] }
2323
chrono = { version = "0.4", default-features = false, optional = true, features = ["clock"] }

sea-query-diesel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.60"
1717
[lib]
1818

1919
[dependencies]
20-
sea-query = { version = "0.31", path = "..", default-features = false }
20+
sea-query = { version = "0.30", path = "..", default-features = false }
2121
diesel = { version = "2.1.1", features = [
2222
"i-implement-a-third-party-backend-and-opt-into-breaking-changes",
2323
] }

sea-query-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.60"
1717
[lib]
1818

1919
[dependencies]
20-
sea-query = { version = "0.31", path = "..", default-features = false }
20+
sea-query = { version = "0.30", path = "..", default-features = false }
2121
postgres-types = { version = "0.2", default-features = false }
2222
bytes = { version = "1", default-features = false }
2323
rust_decimal = { version = "1", default-features = false, optional = true }

sea-query-rbatis/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.60"
1717
[lib]
1818

1919
[dependencies]
20-
sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] }
20+
sea-query = { version = "0.30", path = "..", default-features = false, features = ["thread-safe"] }
2121
rbs = { version = "4.3.1" }
2222
serde_json = { version = "1", default-features = false, optional = true, features = ["std"] }
2323
chrono = { version = "0.4", default-features = false, optional = true, features = [ "clock"] }

sea-query-rusqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version = "1.60"
1717
[lib]
1818

1919
[dependencies]
20-
sea-query = { version = "0.31", path = "..", default-features = false }
20+
sea-query = { version = "0.30", path = "..", default-features = false }
2121
rusqlite = { version = "0.29", default-features = false, features = ["bundled"] }
2222

2323
[features]

0 commit comments

Comments
 (0)