Skip to content

Commit 03a08bb

Browse files
committed
Bump bdk_wallet version to 1.0.0
bdk_core to 0.4.1 bdk_chain to 0.21.1 bdk_bitcoind_rpc to 0.17.1 bdk_electrum to 0.20.1 bdk_esplora to 0.20.1 bdk_file_store to 0.18.1 bdk_testenv to 0.11.1 Create CHANGELOG.md files for all crates.
1 parent 3e01d56 commit 03a08bb

File tree

17 files changed

+1367
-661
lines changed

17 files changed

+1367
-661
lines changed

CHANGELOG.md

Lines changed: 0 additions & 645 deletions
This file was deleted.

crates/bitcoind_rpc/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project can be found here and in each release's git tag and can be viewed with `git tag -ln100 "v*"`. See also [DEVELOPMENT_CYCLE.md](../../DEVELOPMENT_CYCLE.md) for more details.
4+
5+
Contributors do not need to change this file but do need to add changelog details in their PR descriptions. The person making the next release will collect changelog details from included PRs and edit this file prior to each release.
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9+
10+
## [bitcoind_rpc-0.17.1]
11+
12+
### Changed
13+
14+
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
15+
16+
[bitcoind_rpc-0.17.1]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.17.1

crates/bitcoind_rpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_bitcoind_rpc"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"
@@ -18,7 +18,7 @@ workspace = true
1818
[dependencies]
1919
bitcoin = { version = "0.32.0", default-features = false }
2020
bitcoincore-rpc = { version = "0.19.0" }
21-
bdk_core = { path = "../core", version = "0.4.0", default-features = false }
21+
bdk_core = { path = "../core", version = "0.4.1", default-features = false }
2222

2323
[dev-dependencies]
2424
bdk_testenv = { path = "../testenv" }

crates/chain/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project can be found here and in each release's git tag and can be viewed with `git tag -ln100 "v*"`. See also [DEVELOPMENT_CYCLE.md](../../DEVELOPMENT_CYCLE.md) for more details.
4+
5+
Contributors do not need to change this file but do need to add changelog details in their PR descriptions. The person making the next release will collect changelog details from included PRs and edit this file prior to each release.
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9+
10+
## [chain-0.21.1]
11+
12+
### Changed
13+
14+
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
15+
16+
[chain-0.21.1]: https://github.com/bitcoindevkit/bdk/releases/tag/chain-0.21.1

crates/chain/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_chain"
3-
version = "0.21.0"
3+
version = "0.21.1"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"
@@ -17,7 +17,7 @@ workspace = true
1717

1818
[dependencies]
1919
bitcoin = { version = "0.32.0", default-features = false }
20-
bdk_core = { path = "../core", version = "0.4.0", default-features = false }
20+
bdk_core = { path = "../core", version = "0.4.1", default-features = false }
2121
serde = { version = "1", optional = true, features = ["derive", "rc"] }
2222
miniscript = { version = "12.0.0", optional = true, default-features = false }
2323

crates/core/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project can be found here and in each release's git tag and can be viewed with `git tag -ln100 "v*"`. See also [DEVELOPMENT_CYCLE.md](../../DEVELOPMENT_CYCLE.md) for more details.
4+
5+
Contributors do not need to change this file but do need to add changelog details in their PR descriptions. The person making the next release will collect changelog details from included PRs and edit this file prior to each release.
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9+
10+
## [core-0.4.1]
11+
12+
### Changed
13+
14+
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
15+
16+
[core-0.4.1]: https://github.com/bitcoindevkit/bdk/releases/tag/core-0.4.1

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_core"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
rust-version = "1.63"
66
homepage = "https://bitcoindevkit.org"

crates/electrum/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project can be found here and in each release's git tag and can be viewed with `git tag -ln100 "v*"`. See also [DEVELOPMENT_CYCLE.md](../../DEVELOPMENT_CYCLE.md) for more details.
4+
5+
Contributors do not need to change this file but do need to add changelog details in their PR descriptions. The person making the next release will collect changelog details from included PRs and edit this file prior to each release.
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9+
10+
## [electrum-0.20.1]
11+
12+
### Changed
13+
14+
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
15+
16+
[electrum-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/electrum-0.20.1

crates/electrum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bdk_electrum"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
edition = "2021"
55
homepage = "https://bitcoindevkit.org"
66
repository = "https://github.com/bitcoindevkit/bdk"
@@ -13,7 +13,7 @@ readme = "README.md"
1313
workspace = true
1414

1515
[dependencies]
16-
bdk_core = { path = "../core", version = "0.4.0" }
16+
bdk_core = { path = "../core", version = "0.4.1" }
1717
electrum-client = { version = "0.22", features = [ "proxy" ], default-features = false }
1818

1919
[dev-dependencies]

crates/esplora/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project can be found here and in each release's git tag and can be viewed with `git tag -ln100 "v*"`. See also [DEVELOPMENT_CYCLE.md](../../DEVELOPMENT_CYCLE.md) for more details.
4+
5+
Contributors do not need to change this file but do need to add changelog details in their PR descriptions. The person making the next release will collect changelog details from included PRs and edit this file prior to each release.
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9+
10+
## [esplora-0.20.1]
11+
12+
### Changed
13+
14+
- Minor updates to fix new rustc 1.83.0 clippy warnings #1776
15+
16+
[esplora-0.20.1]: https://github.com/bitcoindevkit/bdk/releases/tag/esplora-0.20.1

0 commit comments

Comments
 (0)