diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ab13f6d..46197330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 60a60907..0043ae11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 } diff --git a/sea-orm-codegen/Cargo.toml b/sea-orm-codegen/Cargo.toml index 4c11b049..c6642064 100644 --- a/sea-orm-codegen/Cargo.toml +++ b/sea-orm-codegen/Cargo.toml @@ -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",