Merge branch '0.2.x'
This commit is contained in:
commit
37d1e96a6f
1
.github/workflows/rust.yml
vendored
1
.github/workflows/rust.yml
vendored
@ -5,6 +5,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- 0.2.x
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
10
CHANGELOG.md
10
CHANGELOG.md
@ -5,6 +5,16 @@ 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.5 - 2021-10-06
|
||||
|
||||
- [[#227]] Resolve "Inserting actual none value of Option<Date> results in panic"
|
||||
- [[#219]] [sea-orm-cli] Add `--tables` option
|
||||
- [[#189]] Add `debug_query` and `debug_query_stmt` macro
|
||||
|
||||
[#227]: https://github.com/SeaQL/sea-orm/issues/227
|
||||
[#219]: https://github.com/SeaQL/sea-orm/pull/219
|
||||
[#189]: https://github.com/SeaQL/sea-orm/pull/189
|
||||
|
||||
## 0.2.4 - 2021-10-01
|
||||
|
||||
- [[#186]] [sea-orm-cli] Foreign key handling
|
||||
|
@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
|
||||
|
||||
[package]
|
||||
name = "sea-orm"
|
||||
version = "0.2.4"
|
||||
version = "0.2.5"
|
||||
authors = ["Chris Tsang <tyt2y7@gmail.com>"]
|
||||
edition = "2018"
|
||||
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.2.4", path = "sea-orm-macros", optional = true }
|
||||
sea-orm-macros = { version = "^0.2.5", path = "sea-orm-macros", optional = true }
|
||||
sea-query = { version = "^0.17.0", features = ["thread-safe"] }
|
||||
sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] }
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
[package]
|
||||
name = "sea-orm-cli"
|
||||
version = "0.2.4"
|
||||
version = "0.2.5"
|
||||
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
||||
edition = "2018"
|
||||
description = "Command line utility for SeaORM"
|
||||
@ -21,7 +21,7 @@ path = "src/main.rs"
|
||||
clap = { version = "^2.33.3" }
|
||||
dotenv = { version = "^0.15" }
|
||||
async-std = { version = "^1.9", features = [ "attributes" ] }
|
||||
sea-orm-codegen = { version = "^0.2.4", path = "../sea-orm-codegen" }
|
||||
sea-orm-codegen = { version = "^0.2.5", path = "../sea-orm-codegen" }
|
||||
sea-schema = { version = "^0.2.9", default-features = false, features = [
|
||||
"debug-print",
|
||||
"sqlx-mysql",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sea-orm-codegen"
|
||||
version = "0.2.4"
|
||||
version = "0.2.5"
|
||||
authors = ["Billy Chan <ccw.billy.123@gmail.com>"]
|
||||
edition = "2018"
|
||||
description = "Code Generator for SeaORM"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sea-orm-macros"
|
||||
version = "0.2.4"
|
||||
version = "0.2.5"
|
||||
authors = [ "Billy Chan <ccw.billy.123@gmail.com>" ]
|
||||
edition = "2018"
|
||||
description = "Derive macros for SeaORM"
|
||||
|
Loading…
x
Reference in New Issue
Block a user