From 4b7234a9593057bd623f3ed31c3f2b93ef6e5612 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 26 Dec 2021 02:43:14 +0800 Subject: [PATCH] 0.5.0-rc.1 --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dfb7c4c3d..325c53d8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,28 @@ 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.5.0-rc.1 - 2021-12-25 + +### Fixed Issues +(Please help fill in) + +### Merged PRs +* First metric and tracing implementation by @nappa85 in https://github.com/SeaQL/sea-orm/pull/373 +* Update sea-orm to depends on SeaQL/sea-query#202 by @billy1624 in https://github.com/SeaQL/sea-orm/pull/370 +* Codegen ActiveEnum & Create Enum From ActiveEnum by @billy1624 in https://github.com/SeaQL/sea-orm/pull/348 +* Axum example: update to Axum v0.4.2 by @ttys3 in https://github.com/SeaQL/sea-orm/pull/383 +* Fix rocket version by @Gabriel-Paulucci in https://github.com/SeaQL/sea-orm/pull/384 +* Insert & Update Return `Model` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/339 +* Rework `ActiveValue` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/340 +* Add wrapper method `ModelTrait::delete` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/396 +* Add docker create script for contributors to setup databases locally by @billy1624 in https://github.com/SeaQL/sea-orm/pull/378 +* Log with tracing-subscriber by @billy1624 in https://github.com/SeaQL/sea-orm/pull/399 +* Codegen SQLite by @billy1624 in https://github.com/SeaQL/sea-orm/pull/386 +* PR without clippy warmings in file changed tab by @billy1624 in https://github.com/SeaQL/sea-orm/pull/401 +* Rename `sea-strum` lib back to `strum` by @billy1624 in https://github.com/SeaQL/sea-orm/pull/361 + +**Full Changelog**: https://github.com/SeaQL/sea-orm/compare/0.4.2...0.5.0 + ## 0.4.2 - 2021-12-12 ### Fixed Issues diff --git a/Cargo.toml b/Cargo.toml index 76672f35f..58bf77512 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"] [package] name = "sea-orm" -version = "0.4.2" +version = "0.5.0-rc.1" authors = ["Chris Tsang "] edition = "2021" description = "🐚 An async & dynamic ORM for Rust" @@ -29,7 +29,7 @@ futures = { version = "^0.3" } futures-util = { version = "^0.3" } tracing = { version = "0.1", features = ["log"] } rust_decimal = { version = "^1", optional = true } -sea-orm-macros = { version = "^0.4.2", path = "sea-orm-macros", optional = true } +sea-orm-macros = { version = "^0.5.0-rc.1", path = "sea-orm-macros", optional = true } sea-query = { version = "^0.20.0", features = ["thread-safe"] } sea-strum = { version = "^0.23", features = ["derive", "sea-orm"] } serde = { version = "^1.0", features = ["derive"] }