Skip to content

Commit

Permalink
0.30.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Nov 22, 2023
1 parent 91b68bb commit 116a1a1
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
target
firedbg
Cargo.lock
*.sublime*
.vscode
Expand Down
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## Main Branch
## 0.30.3 - 2023-11-22

### New Features

* Added `LTree` column type https://github.com/SeaQL/sea-query/pull/604
* Improved parenthesis omission logic https://github.com/SeaQL/sea-query/pull/675

### Bug Fixes

* Fixed `BIGINT PRIMARY KEY AUTOINCREMENT` for SQLite https://github.com/SeaQL/sea-query/issues/689

### Upgrades

* Upgrade `chrono` to `0.4.27`

### Breaking changes

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

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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"]

[package]
name = "sea-query"
version = "0.31.0"
version = "0.30.3"
authors = [
"Chris Tsang <chris.2y3@outlook.com>",
"Billy Chan <ccw.billy.123@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion sea-query-binder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

[dependencies]
sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] }
sea-query = { version = "0.30", path = "..", default-features = false, features = ["thread-safe"] }
sqlx = { version = "0.7", default-features = false, optional = true }
serde_json = { version = "1", default-features = false, optional = true, features = ["std"] }
chrono = { version = "0.4", default-features = false, optional = true, features = ["clock"] }
Expand Down
2 changes: 1 addition & 1 deletion sea-query-diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

[dependencies]
sea-query = { version = "0.31", path = "..", default-features = false }
sea-query = { version = "0.30", path = "..", default-features = false }
diesel = { version = "2.1.1", features = [
"i-implement-a-third-party-backend-and-opt-into-breaking-changes",
] }
Expand Down
2 changes: 1 addition & 1 deletion sea-query-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

[dependencies]
sea-query = { version = "0.31", path = "..", default-features = false }
sea-query = { version = "0.30", path = "..", default-features = false }
postgres-types = { version = "0.2", default-features = false }
bytes = { version = "1", default-features = false }
rust_decimal = { version = "1", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion sea-query-rbatis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

[dependencies]
sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] }
sea-query = { version = "0.30", path = "..", default-features = false, features = ["thread-safe"] }
rbs = { version = "4.3.1" }
serde_json = { version = "1", default-features = false, optional = true, features = ["std"] }
chrono = { version = "0.4", default-features = false, optional = true, features = [ "clock"] }
Expand Down
2 changes: 1 addition & 1 deletion sea-query-rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

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

[features]
Expand Down

0 comments on commit 116a1a1

Please sign in to comment.