diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d2febe9647e..b0b235c1bf1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,14 @@ Increasing the minimal supported Rust version will always be coupled at least wi ## Unreleased -### Added +## [2.2.2] 2024-07-19 + +### Fixed * Support for libsqlite3-sys 0.29.0 +* Fixed a potential panic in the sqlite cursor implementation +* Fixed support for rust numeric operators with columns of the type `Numeric` +* Removed the `SerializedDatabase::new` function due to unsoundness ## [2.2.1] 2024-06-12 @@ -2120,3 +2125,5 @@ queries or set `PIPES_AS_CONCAT` manually. [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 [2.2.0]: https://github.com/diesel-rs/diesel/compare/v.2.1.0...v2.2.0 +[2.2.1]: https://github.com/diesel-rs/diesel/compare/v.2.2.0...v2.2.1 +[2.2.2]: https://github.com/diesel-rs/diesel/compare/v.2.2.1...v2.2.2 diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index 55edc6252058..d3353a4e5d48 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diesel" -version = "2.2.1" +version = "2.2.2" 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_derives/Cargo.toml b/diesel_derives/Cargo.toml index 76e9f9dc554e..d01d52dbca5b 100644 --- a/diesel_derives/Cargo.toml +++ b/diesel_derives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diesel_derives" -version = "2.2.1" +version = "2.2.2" license = "MIT OR Apache-2.0" description = "You should not use this crate directly, it is internal to Diesel." documentation = "https://diesel.rs/guides/"