Skip to content

Commit

Permalink
Merge branch 'master' into sqlx-0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Aug 6, 2024
2 parents 0a4d834 + d898d77 commit af7c8fd
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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/).

## 0.31.0 - Pending
## 0.31.0 - 2024-08-02

### Versions

Expand All @@ -19,8 +19,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
+ `sea-query-binder`/`0.6.0-rc.2`: 2024-04-14
+ `sea-query-binder`/`0.6.0-rc.3`: 2024-06-19
+ `sea-query-binder`/`0.6.0-rc.4`: 2024-06-25
+ `sea-query-binder`/`0.6.0`: 2024-08-02
+ `sea-query-rusqlite`/`0.6.0-rc.1`: 2024-02-19
+ `sea-query-rusqlite`/`0.6.0`: 2024-08-02
+ `sea-query-attr`/`0.1.2`: 2024-04-14
+ `sea-query-diesel`/`0.2.0`: 2024-08-02

### New Features

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-rc.9"
version = "0.31.0"
authors = [
"Chris Tsang <[email protected]>",
"Billy Chan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion sea-query-attr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ darling = { version = "0.14", default-features = false }

[dev-dependencies]
trybuild = "1.0"
sea-query = { version = "0.31.0-rc.8", path = ".." }
sea-query = { version = "0.31.0", path = ".." }
strum = { version = "0.25", features = ["derive"] }
4 changes: 2 additions & 2 deletions sea-query-binder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "sea-query-binder"
version = "0.6.0-rc.4"
version = "0.6.0"
authors = [ "Valentin Tolmer <[email protected]>", "Ivan Krivosheev <[email protected]>" ]
edition = "2021"
description = "Driver library for using SeaQuery with SQLx"
Expand All @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

[dependencies]
sea-query = { version = "0.31.0-rc.8", path = "..", default-features = false, features = ["thread-safe"] }
sea-query = { version = "0.31.0", path = "..", default-features = false, features = ["thread-safe"] }
sqlx = { version = "<0.8.1", 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-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ thiserror = { version = "1.0", default-features = false }

[dev-dependencies]
trybuild = "1.0"
sea-query = { version = "0.31.0-rc.8", path = ".." }
sea-query = { version = "0.31.0", path = ".." }
strum = { version = "0.25", features = ["derive"] }

[features]
Expand Down
4 changes: 2 additions & 2 deletions sea-query-diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "sea-query-diesel"
version = "0.1.0"
version = "0.2.0"
authors = ["Emile Fugulin <[email protected]>"]
edition = "2021"
description = "Binder traits for connecting sea-query with diesel"
Expand All @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

[dependencies]
sea-query = { version = "0.31.0-rc.8", path = "..", default-features = false }
sea-query = { version = "0.31.0", 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.0-rc.8", path = "..", default-features = false }
sea-query = { version = "0.31.0", 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.0-rc.8", path = "..", default-features = false, features = ["thread-safe"] }
sea-query = { version = "0.31.0", 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
4 changes: 2 additions & 2 deletions sea-query-rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "sea-query-rusqlite"
version = "0.6.0-rc.1"
version = "0.6.0"
authors = [ "Ivan Krivosheev <[email protected]>" ]
edition = "2021"
description = "Binder traits for connecting sea-query with Rusqlite"
Expand All @@ -17,7 +17,7 @@ rust-version = "1.60"
[lib]

[dependencies]
sea-query = { version = "0.31.0-rc.8", path = "..", default-features = false }
sea-query = { version = "0.31.0", path = "..", default-features = false }
rusqlite = { version = "0.31" }

[features]
Expand Down

0 comments on commit af7c8fd

Please sign in to comment.