From 9aa4ba1e11faf29a8ed26401e84095320aad4f01 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Wed, 22 Sep 2021 17:50:59 +0800 Subject: [PATCH] 0.2.3 --- CHANGELOG.md | 11 ++++++++++- Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7757fb8..dd5627d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,19 @@ # Changelog 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.3 - 2021-09-22 + +- [[#152]] DatabaseConnection impl `Clone` +- [[#175]] Impl `TryGetableMany` for diffrent types of generics +- Codegen `TimestampWithTimeZone` fixup + +[#152]: https://github.com/SeaQL/sea-orm/issues/152 +[#175]: https://github.com/SeaQL/sea-orm/issues/175 + ## 0.2.2 - 2021-09-18 - [[#105]] Compact entity format diff --git a/Cargo.toml b/Cargo.toml index 3e5a9682..37aa1b6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-orm-macros", "sea-orm-codegen"] [package] name = "sea-orm" -version = "0.2.2" +version = "0.2.3" authors = ["Chris Tsang "] 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.2", path = "sea-orm-macros", optional = true } +sea-orm-macros = { version = "^0.2.3", path = "sea-orm-macros", optional = true } sea-query = { version = "^0.16.3", features = ["thread-safe"] } sea-strum = { version = "^0.21", features = ["derive", "sea-orm"] } serde = { version = "^1.0", features = ["derive"] }