This commit is contained in:
Chris Tsang 2021-09-03 22:54:47 +08:00
parent 60fdc78766
commit 9a1b771e41
3 changed files with 17 additions and 2 deletions

View File

@ -5,6 +5,20 @@ 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.0 - 2021-09-03
- [[#37]] Rocket example
- [[#114]] `log` crate and `env-logger`
- [[#103]] `InsertResult` to return the primary key's type
- [[#89]] Represent several relations between same types by `Linked`
- [[#59]] Transforming an Entity into `TableCreateStatement`
[#37]: https://github.com/SeaQL/sea-orm/issues/37
[#114]: https://github.com/SeaQL/sea-orm/issues/114
[#103]: https://github.com/SeaQL/sea-orm/issues/103
[#89]: https://github.com/SeaQL/sea-orm/issues/89
[#59]: https://github.com/SeaQL/sea-orm/issues/59
## 0.1.3 - 2021-08-30 ## 0.1.3 - 2021-08-30
- [[#108]] Remove impl TryGetable for Option<T> - [[#108]] Remove impl TryGetable for Option<T>

View File

@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
[package] [package]
name = "sea-orm" name = "sea-orm"
version = "0.1.3" version = "0.2.0"
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"

View File

@ -19,7 +19,8 @@ rocket_db_pools = { git = "https://github.com/SergioBenitez/Rocket.git" }
rocket_dyn_templates = { git = "https://github.com/SergioBenitez/Rocket.git", features = [ rocket_dyn_templates = { git = "https://github.com/SergioBenitez/Rocket.git", features = [
"tera", "tera",
] } ] }
sea-orm = { path = "../../", features = ["web-api-rocket"] } # remove `path = ""` in your own project
sea-orm = { path = "../../", version = "^0.2" }
serde_json = { version = "^1" } serde_json = { version = "^1" }
[dependencies.sqlx] [dependencies.sqlx]