Skip to content

Commit 213ecd7

Browse files
committed
chore: upgrade libsqlite3-sys
1 parent 31d402b commit 213ecd7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3434
* [[#2880]]: feat: use specific message for slow query logs [[@abonander]]
3535
* [[#2882]]: Do not require db url for prepare [[@tamasfe]]
3636
* [[#2890]]: doc(sqlite): cover lack of `NUMERIC` support [[@abonander]]
37+
* [No PR]: Upgraded `libsqlite3-sys` to 0.27.0
38+
* Note: linkage to `libsqlite3-sys` is considered semver-exempt;
39+
see the release notes for 0.7.0 below for details.
3740

3841
### Fixed
3942
* [[#2640]]: fix: sqlx::macro db cleanup race condition by adding a margin to current timestamp [[@fhsgoncalves]]

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ tempdir = "0.3.7"
178178
criterion = {version = "0.4", features = ["async_tokio"]}
179179

180180
# Needed to test SQLCipher
181-
libsqlite3-sys = { version = "0.26", features = ["bundled-sqlcipher"] }
181+
libsqlite3-sys = { version = "0.27", features = ["bundled-sqlcipher"] }
182182

183183
#
184184
# Any

Diff for: sqlx-sqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ regex = { version = "1.5.5", optional = true }
4646
urlencoding = "2.1.3"
4747

4848
[dependencies.libsqlite3-sys]
49-
version = "0.26.0"
49+
version = "0.27.0"
5050
default-features = false
5151
features = [
5252
"pkg-config",

0 commit comments

Comments
 (0)