diff --git a/CHANGELOG.md b/CHANGELOG.md index 649d8b980..2210152cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +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.16.2 +## 0.16.3 - 2021-09-17 + ++ [[#131]] `CAST AS` expression ++ [[#131]] `InsertStatement` accepts `SimpleExpr` ++ [[#137]] Postgres driver bind `DateTime` + +[#131]: https://github.com/SeaQL/sea-query/issues/131 +[#137]: https://github.com/SeaQL/sea-query/pull/137 + +## 0.16.2 - 2021-09-15 + [[#120]] Support `RETURNING` for `DeleteStatement` + [[#128]] Support `UNION` clause for `SelectStatement` @@ -13,13 +22,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). [#120]: https://github.com/SeaQL/sea-query/issues/120 [#128]: https://github.com/SeaQL/sea-query/pull/128 -## 0.16.1 +## 0.16.1 - 2021-09-10 + [[#129]] MySql `ColumnType::Binary(None)` maps to "blob" [#129]: https://github.com/SeaQL/sea-query/pull/129 -## 0.16.0 +## 0.16.0 - 2021-09-02 + [[#112]] Introduce `Nullable` trait to permit custom `Option` + [[#113]] `ValueType` trait should have a non-panic-ing method diff --git a/Cargo.toml b/Cargo.toml index fae654416..996fe0337 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ members = [ [package] name = "sea-query" -version = "0.16.2" +version = "0.16.3" authors = [ "Chris Tsang ", "Billy Chan ",