diff --git a/CHANGELOG.md b/CHANGELOG.md index a7959d3e..0ee9a233 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,15 @@ 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/). -## Main Branch +## 0.30.5 - 2023-12-14 ### New Features * Added feature flag `option-more-parentheses` to have more parentheses in expressions https://github.com/SeaQL/sea-query/pull/723 * Added feature flag `option-sqlite-exact-column-type` to only use `integer` for SQLite +* Support `COUNT(DISTINCT "column")` https://github.com/SeaQL/sea-query/pull/700 +* Support index hints for MySQL (via `extension::mysql::MySqlSelectStatementExt`) https://github.com/SeaQL/sea-query/pull/636 +* Support expressions for `ON CONFLICT` targets https://github.com/SeaQL/sea-query/pull/692 ### Enhancements diff --git a/Cargo.toml b/Cargo.toml index 9c6372d2..5c7b8e9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"] [package] name = "sea-query" -version = "0.30.4" +version = "0.30.5" authors = [ "Chris Tsang ", "Billy Chan ",