From e6a0fb0aae540250c134cbab4b5b29a0ef4fcb58 Mon Sep 17 00:00:00 2001 From: valued mammal Date: Wed, 31 Dec 2025 16:50:29 -0500 Subject: [PATCH 1/2] deps: bump `bdk_wallet` to 2.3.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3f832e4..869a24d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] bdk_chain = { version = "0.23.2", features = ["miniscript"] } -bdk_wallet = { version = "2.2.0", optional = true } +bdk_wallet = { version = "2.3.0", optional = true } sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio"] } [dev-dependencies] From 1c260fe892a8d6d021fb1867c1dc5136a04672fc Mon Sep 17 00:00:00 2001 From: valued mammal Date: Wed, 31 Dec 2025 14:49:21 -0500 Subject: [PATCH 2/2] chore: bump version to 0.4.3 - Add `CHANGELOG.md` --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5fded1b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.4.3] + +### Fixed + +- fix: Avoid inserting rows of duplicate height into `block` table #9 + +### Changed + +- feat: Make `Store::migrate` public +- deps: Bump `bdk_wallet` to 2.3.0 + +[unreleased]: https://github.com/bitcoindevkit/bdk-sqlite/compare/0.4.3...HEAD +[0.4.3]: https://github.com/bitcoindevkit/bdk-sqlite/releases/tag/0.4.3 diff --git a/Cargo.toml b/Cargo.toml index 869a24d..30fe2ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bdk_sqlite" -version = "0.4.2" +version = "0.4.3" authors = ["Bitcoin Dev Kit Developers"] rust-version = "1.85.0" edition = "2024"