diff --git a/CHANGELOG.md b/CHANGELOG.md index f14d6862..bd9c5072 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ 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.4.1 - 2021-12-05 + +### Fixed Issues +* Is it possible to have 4 values Composite Key? https://github.com/SeaQL/sea-orm/issues/352 +* [sea-orm-cli] Better handling of relation generations https://github.com/SeaQL/sea-orm/issues/239 + +### Merged PRs +* Add TryFromU64 trait for `DateTime`. by @kev0960 in https://github.com/SeaQL/sea-orm/pull/331 +* add offset and limit by @lz1998 in https://github.com/SeaQL/sea-orm/pull/351 +* For some reason the `axum_example` fail to compile by @billy1624 in https://github.com/SeaQL/sea-orm/pull/355 +* Support Up to 6 Values Composite Primary Key by @billy1624 in https://github.com/SeaQL/sea-orm/pull/353 +* Codegen Handle Self Referencing & Multiple Relations to the Same Related Entity by @billy1624 in https://github.com/SeaQL/sea-orm/pull/347 + +**Full Changelog**: https://github.com/SeaQL/sea-orm/compare/0.4.0...0.4.1 + ## 0.4.0 - 2021-11-19 ### Fixed Issues diff --git a/Cargo.toml b/Cargo.toml index f73cfa51..47f075eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"] [package] name = "sea-orm" -version = "0.4.0" +version = "0.4.1" authors = ["Chris Tsang "] edition = "2021" description = "🐚 An async & dynamic ORM for Rust" @@ -29,7 +29,7 @@ futures = { version = "^0.3" } futures-util = { version = "^0.3" } log = { version = "^0.4", optional = true } rust_decimal = { version = "^1", optional = true } -sea-orm-macros = { version = "^0.4.0", path = "sea-orm-macros", optional = true } +sea-orm-macros = { version = "^0.4.1", path = "sea-orm-macros", optional = true } sea-query = { version = "^0.19.1", features = ["thread-safe"] } sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] } serde = { version = "^1.0", features = ["derive"] }