From b2f0ac6e7833fd22213c98cf622a5b2bfd2a9f61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 14:25:29 +0000 Subject: [PATCH 1/4] Update rusqlite requirement from 0.33.0 to 0.34.0 Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.33.0...v0.34.0) --- updated-dependencies: - dependency-name: rusqlite dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d226175..a218522 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ window = ["rusqlite/window"] crossbeam-channel = { version = "0.5.9" } futures-channel = { version = "0.3.29" } futures-util = { version = "0.3.29" } -rusqlite = { version = "0.33.0" } +rusqlite = { version = "0.34.0" } [dev-dependencies] async-std = { version = "1.12.0" } From 27cc56337dfcc27628996ea4f4eceb172a373abe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Apr 2025 14:48:59 +0000 Subject: [PATCH 2/4] Update rusqlite requirement from 0.34.0 to 0.35.0 Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.34.0...v0.35.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.35.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a218522..b3195df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ window = ["rusqlite/window"] crossbeam-channel = { version = "0.5.9" } futures-channel = { version = "0.3.29" } futures-util = { version = "0.3.29" } -rusqlite = { version = "0.34.0" } +rusqlite = { version = "0.35.0" } [dev-dependencies] async-std = { version = "1.12.0" } From ffc33df30bae2d87c35750a2ed596a988516932e Mon Sep 17 00:00:00 2001 From: Ryan Fowler Date: Mon, 21 Apr 2025 17:08:23 -0700 Subject: [PATCH 3/4] Relax certain dependency compatibility requirements --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b3195df..fb2644c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,9 +42,9 @@ vtab = ["rusqlite/vtab"] window = ["rusqlite/window"] [dependencies] -crossbeam-channel = { version = "0.5.9" } -futures-channel = { version = "0.3.29" } -futures-util = { version = "0.3.29" } +crossbeam-channel = { version = "0.5" } +futures-channel = { version = "0.3" } +futures-util = { version = "0.3" } rusqlite = { version = "0.35.0" } [dev-dependencies] From 6f618352d5ffa040ba0c8ea15a3f22ee40e90113 Mon Sep 17 00:00:00 2001 From: Ryan Fowler Date: Mon, 21 Apr 2025 17:11:20 -0700 Subject: [PATCH 4/4] Release v0.5.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fb2644c..f1513a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-sqlite" -version = "0.5.0" +version = "0.5.1" authors = ["Ryan Fowler"] edition = "2021" license = "MIT"