0.2.4
This commit is contained in:
parent
dc1bf2c066
commit
d79419f0d3
13
CHANGELOG.md
13
CHANGELOG.md
@ -5,13 +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/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
## 0.2.4 - Prerelease
|
## 0.2.4 - 2021-10-01
|
||||||
|
|
||||||
- [[#186]] [sea-orm-cli] Foreign key handling
|
- [[#186]] [sea-orm-cli] Foreign key handling
|
||||||
- [[#191]] [sea-orm-cli] Unique key handling
|
- [[#191]] [sea-orm-cli] Unique key handling
|
||||||
|
- [[#182]] `find_linked` join with alias
|
||||||
|
- [[#202]] Accept both `postgres://` and `postgresql://`
|
||||||
|
- [[#208]] Support feteching T, (T, U), (T, U, P) etc
|
||||||
|
- [[#209]] Rename column name & column enum variant
|
||||||
|
- [[#207]] Support `chrono::NaiveDate` & `chrono::NaiveTime`
|
||||||
|
- Support `Condition::not` (from sea-query)
|
||||||
|
|
||||||
[#186]: https://github.com/SeaQL/sea-orm/issues/186
|
[#186]: https://github.com/SeaQL/sea-orm/issues/186
|
||||||
[#191]: https://github.com/SeaQL/sea-orm/issues/191
|
[#191]: https://github.com/SeaQL/sea-orm/issues/191
|
||||||
|
[#182]: https://github.com/SeaQL/sea-orm/pull/182
|
||||||
|
[#202]: https://github.com/SeaQL/sea-orm/pull/202
|
||||||
|
[#208]: https://github.com/SeaQL/sea-orm/pull/208
|
||||||
|
[#209]: https://github.com/SeaQL/sea-orm/pull/209
|
||||||
|
[#207]: https://github.com/SeaQL/sea-orm/pull/207
|
||||||
|
|
||||||
## 0.2.3 - 2021-09-22
|
## 0.2.3 - 2021-09-22
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sea-orm"
|
name = "sea-orm"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "🐚 An async & dynamic ORM for Rust"
|
description = "🐚 An async & dynamic ORM for Rust"
|
||||||
@ -29,7 +29,7 @@ futures = { version = "^0.3" }
|
|||||||
futures-util = { version = "^0.3" }
|
futures-util = { version = "^0.3" }
|
||||||
log = { version = "^0.4", optional = true }
|
log = { version = "^0.4", optional = true }
|
||||||
rust_decimal = { version = "^1", optional = true }
|
rust_decimal = { version = "^1", optional = true }
|
||||||
sea-orm-macros = { version = "^0.2.3", path = "sea-orm-macros", optional = true }
|
sea-orm-macros = { version = "^0.2.4", path = "sea-orm-macros", optional = true }
|
||||||
sea-query = { version = "^0.16.5", features = ["thread-safe"] }
|
sea-query = { version = "^0.16.5", features = ["thread-safe"] }
|
||||||
sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] }
|
sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] }
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "^1.0", features = ["derive"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user