From 213ecd743c70fd312a9aac3715da6c80fbdf6aed Mon Sep 17 00:00:00 2001 From: Austin Bonander Date: Wed, 22 Nov 2023 17:49:00 -0800 Subject: [PATCH] chore: upgrade `libsqlite3-sys` --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- sqlx-sqlite/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e3de7dbc..8f6f62a9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * [[#2880]]: feat: use specific message for slow query logs [[@abonander]] * [[#2882]]: Do not require db url for prepare [[@tamasfe]] * [[#2890]]: doc(sqlite): cover lack of `NUMERIC` support [[@abonander]] +* [No PR]: Upgraded `libsqlite3-sys` to 0.27.0 + * Note: linkage to `libsqlite3-sys` is considered semver-exempt; + see the release notes for 0.7.0 below for details. ### Fixed * [[#2640]]: fix: sqlx::macro db cleanup race condition by adding a margin to current timestamp [[@fhsgoncalves]] diff --git a/Cargo.toml b/Cargo.toml index ab7be1ca5..f13975a94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -178,7 +178,7 @@ tempdir = "0.3.7" criterion = {version = "0.4", features = ["async_tokio"]} # Needed to test SQLCipher -libsqlite3-sys = { version = "0.26", features = ["bundled-sqlcipher"] } +libsqlite3-sys = { version = "0.27", features = ["bundled-sqlcipher"] } # # Any diff --git a/sqlx-sqlite/Cargo.toml b/sqlx-sqlite/Cargo.toml index c1ab01209..dd260808f 100644 --- a/sqlx-sqlite/Cargo.toml +++ b/sqlx-sqlite/Cargo.toml @@ -46,7 +46,7 @@ regex = { version = "1.5.5", optional = true } urlencoding = "2.1.3" [dependencies.libsqlite3-sys] -version = "0.26.0" +version = "0.27.0" default-features = false features = [ "pkg-config",