Preapare a diesel 2.1.6 patch release
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7d937c3..605805b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,12 @@
 
 ## 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 @@
 [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 0eb4b6d..9321617 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 21f0529..8cd67f9 100644
--- a/diesel_compile_tests/Cargo.lock
+++ b/diesel_compile_tests/Cargo.lock
@@ -64,7 +64,7 @@
 
 [[package]]
 name = "diesel"
-version = "2.1.5"
+version = "2.1.6"
 dependencies = [
  "bigdecimal",
  "bitflags 2.2.1",
@@ -98,7 +98,7 @@
 
 [[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 d8d96d4..6836bd6 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"