Skip to content

Commit 4b7234a

Browse files
committed
0.5.0-rc.1
1 parent cb26ed3 commit 4b7234a

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## 0.5.0-rc.1 - 2021-12-25
9+
10+
### Fixed Issues
11+
(Please help fill in)
12+
13+
### Merged PRs
14+
* First metric and tracing implementation by @nappa85 in https://github.com/SeaQL/sea-orm/pull/373
15+
* Update sea-orm to depends on SeaQL/sea-query#202 by @billy1624 in https://github.com/SeaQL/sea-orm/pull/370
16+
* Codegen ActiveEnum & Create Enum From ActiveEnum by @billy1624 in https://github.com/SeaQL/sea-orm/pull/348
17+
* Axum example: update to Axum v0.4.2 by @ttys3 in https://github.com/SeaQL/sea-orm/pull/383
18+
* Fix rocket version by @Gabriel-Paulucci in https://github.com/SeaQL/sea-orm/pull/384
19+
* Insert & Update Return `Model` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/339
20+
* Rework `ActiveValue` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/340
21+
* Add wrapper method `ModelTrait::delete` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/396
22+
* Add docker create script for contributors to setup databases locally by @billy1624 in https://github.com/SeaQL/sea-orm/pull/378
23+
* Log with tracing-subscriber by @billy1624 in https://github.com/SeaQL/sea-orm/pull/399
24+
* Codegen SQLite by @billy1624 in https://github.com/SeaQL/sea-orm/pull/386
25+
* PR without clippy warmings in file changed tab by @billy1624 in https://github.com/SeaQL/sea-orm/pull/401
26+
* Rename `sea-strum` lib back to `strum` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/361
27+
28+
**Full Changelog**: https://github.com/SeaQL/sea-orm/compare/0.4.2...0.5.0
29+
830
## 0.4.2 - 2021-12-12
931

1032
### Fixed Issues

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"]
33

44
[package]
55
name = "sea-orm"
6-
version = "0.4.2"
6+
version = "0.5.0-rc.1"
77
authors = ["Chris Tsang <[email protected]>"]
88
edition = "2021"
99
description = "🐚 An async & dynamic ORM for Rust"
@@ -29,7 +29,7 @@ futures = { version = "^0.3" }
2929
futures-util = { version = "^0.3" }
3030
tracing = { version = "0.1", features = ["log"] }
3131
rust_decimal = { version = "^1", optional = true }
32-
sea-orm-macros = { version = "^0.4.2", path = "sea-orm-macros", optional = true }
32+
sea-orm-macros = { version = "^0.5.0-rc.1", path = "sea-orm-macros", optional = true }
3333
sea-query = { version = "^0.20.0", features = ["thread-safe"] }
3434
sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] }
3535
serde = { version = "^1.0", features = ["derive"] }

0 commit comments

Comments
 (0)