0.2.6
This commit is contained in:
parent
f0aea3bf10
commit
bfb83044f1
@ -5,6 +5,13 @@ 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.6 - 2021-10-09
|
||||||
|
|
||||||
|
- [[#224]] [sea-orm-cli] Date & Time column type mapping
|
||||||
|
- Escape rust keywords with `r#` raw identifier
|
||||||
|
|
||||||
|
[#224]: https://github.com/SeaQL/sea-orm/pull/224
|
||||||
|
|
||||||
## 0.2.5 - 2021-10-06
|
## 0.2.5 - 2021-10-06
|
||||||
|
|
||||||
- [[#227]] Resolve "Inserting actual none value of Option<Date> results in panic"
|
- [[#227]] Resolve "Inserting actual none value of Option<Date> results in panic"
|
||||||
|
@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sea-orm"
|
name = "sea-orm"
|
||||||
version = "0.2.5"
|
version = "0.2.6"
|
||||||
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.5", path = "sea-orm-macros", optional = true }
|
sea-orm-macros = { version = "^0.2.6", path = "sea-orm-macros", optional = true }
|
||||||
sea-query = { version = "^0.17.0", features = ["thread-safe"] }
|
sea-query = { version = "^0.17.0", 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