diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f676ad..9787a8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ Procedure when bumping the version number: ## Unreleased +### Changed + +- **(breaking)** Bumped `rusqlite` dependency from `0.30` to `0.31` + ## v0.3.0 - 2023-12-26 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 66f7603..cc38176 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,6 @@ serde = ["dep:serde"] tokio = ["dep:tokio"] [dependencies] -rusqlite = "0.30.0" -serde = { version = "1.0.193", optional = true } -tokio = { version = "1.35.1", features = ["sync"], optional = true } +rusqlite = "0.31.0" +serde = { version = "1.0.197", optional = true } +tokio = { version = "1.36.0", features = ["sync"], optional = true }