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
1 change: 1 addition & 0 deletions examples/example_wallet_electrum/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use bdk_electrum::electrum_client;
use bdk_electrum::BdkElectrumClient;
use bdk_wallet::bitcoin::Amount;
Expand Down
1 change: 1 addition & 0 deletions examples/example_wallet_esplora_async/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use anyhow::Ok;
use bdk_esplora::{esplora_client, EsploraAsyncExt};
use bdk_wallet::{
Expand Down
1 change: 1 addition & 0 deletions examples/example_wallet_esplora_blocking/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use bdk_esplora::{esplora_client, EsploraExt};
use bdk_wallet::rusqlite::Connection;
use bdk_wallet::{
Expand Down
16 changes: 16 additions & 0 deletions wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ Contributors do not need to change this file but do need to add changelog detail
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [wallet-2.2.0]

### Added

- feat: Return wallet events when applying updates #310
- feat: (Backport #300) - Add utilities to test persistence #311
- docs: (Backport #306) - docs: add wording on required use of xpub for multipath constructor #309
- docs: add metadata fields to issue templates for triage #296

### Changed

- ci: automated update to rustc 1.89.0 #298

\***Note that the `signer` module has been deprecated and is planned to be removed in a future release.**\*

## [wallet-2.1.0]

### Added
Expand Down Expand Up @@ -1330,3 +1345,4 @@ final transaction is created by calling `finish` on the builder.
[wallet-2.0.0-beta.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-2.0.0-beta.0
[wallet-2.0.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-2.0.0
[wallet-2.1.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-2.1.0
[wallet-2.2.0]: https://github.com/bitcoindevkit/bdk/releases/tag/wallet-2.2.0
2 changes: 1 addition & 1 deletion wallet/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 = "2.2.0-alpha.0"
version = "2.2.0"
repository = "https://github.com/bitcoindevkit/bdk_wallet"
documentation = "https://docs.rs/bdk_wallet"
description = "A modern, lightweight, descriptor-based wallet library"
Expand Down
1 change: 1 addition & 0 deletions wallet/examples/policy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
// You may not use this file except in accordance with one or both of these
// licenses.

#![allow(deprecated)]
extern crate bdk_wallet;
use std::error::Error;

Expand Down
1 change: 1 addition & 0 deletions wallet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
doc(html_logo_url = "https://github.com/bitcoindevkit/bdk/raw/master/static/bdk.png")
)]
#![no_std]
#![allow(deprecated)] // Signers are being removed.
#![warn(missing_docs)]
#![allow(clippy::uninlined_format_args)]

Expand Down
4 changes: 4 additions & 0 deletions wallet/src/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ pub mod event;
pub mod export;
mod params;
mod persisted;
#[deprecated(
since = "2.2.0",
note = "PSBT signing was moved to `bitcoin::psbt` module"
)]
pub mod signer;
pub mod tx_builder;
pub(crate) mod utils;
Expand Down
1 change: 1 addition & 0 deletions wallet/tests/add_foreign_utxo.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use std::str::FromStr;

use bdk_wallet::psbt::PsbtUtils;
Expand Down
1 change: 1 addition & 0 deletions wallet/tests/persisted_wallet.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use std::collections::{BTreeMap, BTreeSet};
use std::path::Path;

Expand Down
1 change: 1 addition & 0 deletions wallet/tests/psbt.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use bdk_wallet::bitcoin::{Amount, FeeRate, Psbt, TxIn};
use bdk_wallet::test_utils::*;
use bdk_wallet::{psbt, KeychainKind, SignOptions};
Expand Down
1 change: 1 addition & 0 deletions wallet/tests/wallet.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use std::str::FromStr;
use std::sync::Arc;

Expand Down
1 change: 1 addition & 0 deletions wallet/tests/wallet_event.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(deprecated)]
use bdk_chain::{BlockId, CheckPoint, ConfirmationBlockTime};
use bdk_wallet::event::WalletEvent;
use bdk_wallet::test_utils::{get_test_wpkh_and_change_desc, new_wallet_and_funding_update};
Expand Down
Loading