Skip to content

Update to bdk 0.17.0 #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 1, 2022
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
2 changes: 2 additions & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
- reserves,electrum
- reserves,esplora-ureq
- reserves,compact_filters
- reserves,rpc
- rpc
- electrum,verify
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

- Re-license to dual MIT and Apache 2.0 and update project name to "Bitcoin Dev Kit"
- Update to bdk and bdk-reserves to `0.17.0`
- Add 'verify' feature flag which enables transaction verification against consensus rules during sync.

## [0.4.0]

Expand Down
119 changes: 67 additions & 52 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk-cli"
version = "0.4.0"
version = "0.5.0"
edition = "2018"
authors = ["Alekos Filini <[email protected]>", "Riccardo Casatta <[email protected]>", "Steve Myers <[email protected]>"]
homepage = "https://bitcoindevkit.org"
Expand All @@ -12,7 +12,7 @@ readme = "README.md"
license = "MIT"

[dependencies]
bdk = { version = "0.16", default-features = false, features = ["all-keys"]}
bdk = { version = "0.17", default-features = false, features = ["all-keys"]}
bdk-macros = "0.6"
structopt = "^0.3"
serde_json = { version = "^1.0" }
Expand All @@ -27,7 +27,7 @@ dirs-next = { version = "2.0", optional = true }
env_logger = { version = "0.7", optional = true }
clap = { version = "2.33", optional = true }
regex = { version = "1", optional = true }
bdk-reserves = { version = "0.16", optional = true}
bdk-reserves = { version = "0.17", optional = true}

[features]
default = ["cli", "repl"]
Expand All @@ -41,6 +41,7 @@ compiler = ["bdk/compiler"]
compact_filters = ["bdk/compact_filters"]
rpc = ["bdk/rpc"]
reserves = ["bdk-reserves"]
verify = ["bdk/verify"]

[[bin]]
name = "bdk-cli"
Expand Down
Loading