diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d937c3c2d92..605805b36f96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ Increasing the minimal supported Rust version will always be coupled at least wi ## Unreleased +## [2.1.6] 2024-04-19 + +* Fix using `BoxableExpression` with having clauses +* Fix using numeric expressions with aliased fields +* Minor documentation fixes + ## [2.1.5] 2024-03-15 * Fix `impl SqlOrd` postgres > postgres_backend feature flag. @@ -2074,3 +2080,4 @@ queries or set `PIPES_AS_CONCAT` manually. [2.1.3]: https://github.com/diesel-rs/diesel/compare/v.2.1.2...v2.1.3 [2.1.4]: https://github.com/diesel-rs/diesel/compare/v.2.1.3...v2.1.4 [2.1.5]: https://github.com/diesel-rs/diesel/compare/v.2.1.4...v2.1.5 +[2.1.6]: https://github.com/diesel-rs/diesel/compare/v.2.1.5...v2.1.6 diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index 0eb4b6d9763a..9321617fa176 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diesel" -version = "2.1.5" +version = "2.1.6" license = "MIT OR Apache-2.0" description = "A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL" readme = "README.md" diff --git a/diesel_compile_tests/Cargo.lock b/diesel_compile_tests/Cargo.lock index 21f052998ed4..8cd67f9aafb9 100644 --- a/diesel_compile_tests/Cargo.lock +++ b/diesel_compile_tests/Cargo.lock @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "diesel" -version = "2.1.5" +version = "2.1.6" dependencies = [ "bigdecimal", "bitflags 2.2.1", @@ -98,7 +98,7 @@ dependencies = [ [[package]] name = "diesel_derives" -version = "2.1.3" +version = "2.1.4" dependencies = [ "diesel_table_macro_syntax", "proc-macro2", diff --git a/diesel_derives/Cargo.toml b/diesel_derives/Cargo.toml index d8d96d460536..6836bd60a932 100644 --- a/diesel_derives/Cargo.toml +++ b/diesel_derives/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "diesel_derives" -version = "2.1.3" +version = "2.1.4" license = "MIT OR Apache-2.0" description = "You should not use this crate directly, it is internal to Diesel." documentation = "https://diesel.rs/guides/" homepage = "https://diesel.rs" repository = "https://github.com/diesel-rs/diesel/tree/master/diesel_derives" autotests = false -include = ["src/**/*", "LICENSE-*"] +include = ["src/**/*", "LICENSE-*", "tests/**"] rust-version = "1.65.0" edition = "2021"