0.2.0
This commit is contained in:
parent
60fdc78766
commit
9a1b771e41
14
CHANGELOG.md
14
CHANGELOG.md
@ -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/)
|
||||
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
|
||||
|
||||
- [[#108]] Remove impl TryGetable for Option<T>
|
||||
|
@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
|
||||
|
||||
[package]
|
||||
name = "sea-orm"
|
||||
version = "0.1.3"
|
||||
version = "0.2.0"
|
||||
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
||||
edition = "2018"
|
||||
description = "🐚 An async & dynamic ORM for Rust"
|
||||
|
@ -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 = [
|
||||
"tera",
|
||||
] }
|
||||
sea-orm = { path = "../../", features = ["web-api-rocket"] }
|
||||
# remove `path = ""` in your own project
|
||||
sea-orm = { path = "../../", version = "^0.2" }
|
||||
serde_json = { version = "^1" }
|
||||
|
||||
[dependencies.sqlx]
|
||||
|
Loading…
x
Reference in New Issue
Block a user