From 6e5e2fd2d8449f6aef8b236193b46449ad0a8337 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sat, 29 May 2021 15:03:28 -0700 Subject: [PATCH 1/2] Update 'libsqlite3-sys' to 0.22 --- diesel/Cargo.toml | 2 +- diesel_cli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index 0feef6d0bcc2..377d90229c5d 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -16,7 +16,7 @@ byteorder = "1.0" diesel_derives = "~1.4.0" chrono = { version = "0.4", optional = true } libc = { version = "0.2.0", optional = true } -libsqlite3-sys = { version = ">=0.8.0, <0.21.0", optional = true, features = ["min_sqlite_version_3_7_16"] } +libsqlite3-sys = { version = ">=0.8.0, <0.23.0", optional = true, features = ["min_sqlite_version_3_7_16"] } mysqlclient-sys = { version = ">=0.1.0, <0.3.0", optional = true } pq-sys = { version = ">=0.3.0, <0.5.0", optional = true } quickcheck = { version = "0.4", optional = true } diff --git a/diesel_cli/Cargo.toml b/diesel_cli/Cargo.toml index fafa4a160cdb..adbf587f69d5 100644 --- a/diesel_cli/Cargo.toml +++ b/diesel_cli/Cargo.toml @@ -27,7 +27,7 @@ tempfile = "3.0.0" toml = "0.4.6" url = { version = "1.4.0", optional = true } barrel = { version = ">= 0.5.0", optional = true, features = ["diesel"] } -libsqlite3-sys = { version = ">=0.8.0, <0.21.0", optional = true, features = ["min_sqlite_version_3_7_16"] } +libsqlite3-sys = { version = ">=0.8.0, <0.23.0", optional = true, features = ["min_sqlite_version_3_7_16"] } [dev-dependencies] difference = "1.0" From bf5a2fa10499f9d8fb5682903a4f760884344586 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Thu, 3 Jun 2021 20:01:16 -0700 Subject: [PATCH 2/2] Update the CHANGELOG for 1.4.7 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5b34dcd8385..df2e88758806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All user visible changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/), as described for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md) +## [1.4.7] - 2021-06-03 + +### Fixed + +* Updated 'libsqlite3-sys' to 0.22 + ## [1.4.6] - 2021-03-05 ### Fixed