Update sea-query to 0.26.3

This commit is contained in:
Chris Tsang 2022-08-20 14:04:53 +08:00
parent d262501a44
commit fad54627cd
3 changed files with 8 additions and 7 deletions

View File

@ -7,11 +7,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## 0.10.0 - Pending
### House keeping
* Set minimal rustc version to `1.60` https://github.com/SeaQL/sea-orm/pull/938
* Exclude `chrono` default features https://github.com/SeaQL/sea-orm/pull/950
## 0.9.2 - Pending
### Enhancements
@ -19,6 +14,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
* [sea-orm-cli] Migrator CLI handles init and generate commands https://github.com/SeaQL/sea-orm/pull/931
* [sea-orm-cli] added `with-copy-enums` flag to conditional derive `Copy` on `ActiveEnum` https://github.com/SeaQL/sea-orm/pull/936
### House keeping
* Exclude `chrono` default features https://github.com/SeaQL/sea-orm/pull/950
* Set minimal rustc version to `1.60` https://github.com/SeaQL/sea-orm/pull/938
* Update `sea-query` to `0.26.3`
## 0.9.1 - 2022-07-22
### Enhancements

View File

@ -33,7 +33,7 @@ log = { version = "^0.4" }
tracing = { version = "^0.1", features = ["log"] }
rust_decimal = { version = "^1", optional = true }
sea-orm-macros = { version = "^0.9.1", path = "sea-orm-macros", optional = true }
sea-query = { version = "^0.26", features = ["thread-safe"] }
sea-query = { version = "^0.26.3", features = ["thread-safe"] }
sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0", optional = true }

View File

@ -16,7 +16,7 @@ name = "sea_orm_codegen"
path = "src/lib.rs"
[dependencies]
sea-query = { version = "^0.26.0" }
sea-query = { version = "^0.26.3" }
syn = { version = "^1", default-features = false, features = [
"derive",
"parsing",