Skip to content

Commit

Permalink
chore: upgrade libsqlite3-sys
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Nov 23, 2023
1 parent 31d402b commit 213ecd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sqlx-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 213ecd7

Please sign in to comment.