Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Switch to cargo-llvm-cov for code coverage [#371](https://github.com/bitcoindevkit/bdk_wallet/pull/371)
- docs: Add section on ChangeSet version compatibility [#391](https://github.com/bitcoindevkit/bdk_wallet/pull/391)
- Implement `core::error::Error` for several types and un-feature-gate `std::error::Error` [#397](https://github.com/bitcoindevkit/bdk_wallet/pull/397)
- deps: bump `bdk_chain` to 0.23.2
- deps: bump `bitcoin` to 0.32.8
- deps: bump `miniscript` to 12.3.5
- deps: bump `rand_core` to 0.6.4
- deps: bump `bip39` to 2.2.2
- deps: bump `tempfile` to 3.26.0
- deps: bump `bitcoin` to 0.32.8 [#398](https://github.com/bitcoindevkit/bdk_wallet/pull/398)
- deps: bump `miniscript` to 12.3.5 [#398](https://github.com/bitcoindevkit/bdk_wallet/pull/398)
- deps: bump `rand_core` to 0.6.4 [#398](https://github.com/bitcoindevkit/bdk_wallet/pull/398)
- deps: bump `bip39` to 2.2.2 [#398](https://github.com/bitcoindevkit/bdk_wallet/pull/398)
- deps: bump `tempfile` to 3.26.0 [#398](https://github.com/bitcoindevkit/bdk_wallet/pull/398)
- build(deps): bump actions/upload-artifact from 6 to 7 [#389](https://github.com/bitcoindevkit/bdk_wallet/pull/389)
- build(deps): bump Swatinem/rust-cache from 2.8.2 to 2.9.1 [#406](https://github.com/bitcoindevkit/bdk_wallet/pull/406)
- chore: Bump Rust compiler version to stable (1.94.0) [#407](https://github.com/bitcoindevkit/bdk_wallet/pull/407)
- ci: add docs check job [#416](https://github.com/bitcoindevkit/bdk_wallet/pull/416)
- build(deps): bump codecov/codecov-action from 5.5.2 to 6.0.0 [#424](https://github.com/bitcoindevkit/bdk_wallet/pull/424)
- deps: bump `bdk_chain` to 0.23.3
- deps: bump `bdk_bitcoind_rpc` to 0.22.0
- deps: bump `bdk_file_store` to 0.22.0

### Removed

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bdk_wallet"
homepage = "https://bitcoindevkit.org"
version = "3.0.0-rc.2"
version = "3.0.0"
repository = "https://github.com/bitcoindevkit/bdk_wallet"
documentation = "https://docs.rs/bdk_wallet"
description = "A modern, lightweight, descriptor-based wallet library"
Expand All @@ -20,7 +20,7 @@ rustdoc-args = ["--cfg", "docsrs"]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }

[dependencies]
bdk_chain = { version = "0.23.2", features = ["miniscript", "serde"], default-features = false }
bdk_chain = { version = "0.23.3", features = ["miniscript", "serde"], default-features = false }
bitcoin = { version = "0.32.8", features = ["serde", "base64"], default-features = false }
miniscript = { version = "12.3.5", features = ["serde"], default-features = false }
rand_core = { version = "0.6.4" }
Expand All @@ -29,7 +29,7 @@ serde = { version = "1", features = ["derive"] }

# Optional dependencies
anyhow = { version = "1", optional = true }
bdk_file_store = { version = "0.21.1", optional = true }
bdk_file_store = { version = "0.22.0", optional = true }
bip39 = { version = "2.2.2", optional = true }
tempfile = { version = "3.26.0", optional = true }

Expand All @@ -46,7 +46,7 @@ test-utils = ["std", "anyhow", "tempfile"]
[dev-dependencies]
anyhow = "1"
assert_matches = "1.5.0"
bdk_bitcoind_rpc = { version = "0.21.0" }
bdk_bitcoind_rpc = { version = "0.22.0" }
bdk_electrum = { version = "0.23.2" }
bdk_esplora = { version = "0.22.1", features = ["async-https", "blocking-https", "tokio"] }
bdk_wallet = { path = ".", features = ["rusqlite", "file_store", "test-utils"] }
Expand Down
1 change: 0 additions & 1 deletion src/wallet/persisted.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ impl WalletPersister for bdk_chain::rusqlite::Connection {
/// Error for [`bdk_file_store`]'s implementation of [`WalletPersister`].
#[cfg(feature = "file_store")]
#[derive(Debug)]
#[allow(clippy::large_enum_variant)]
pub enum FileStoreError {
/// Error when loading from the store.
Load(bdk_file_store::StoreErrorWithDump<ChangeSet>),
Expand Down