Merged
Conversation
- Bump version in Cargo.toml to 0.3.0 - Finalize CHANGELOG.md with release date 2026-03-16 - Fix dependency version numbers to match actual Cargo.toml values - Add Transaction::to_bytes/from_bytes to changelog
- Update npm badge URLs from unscoped bdk-wallet-web/node to @bitcoindevkit/bdk-wallet-web/node - Fix installation commands to use scoped package names - Update Rust version badge from 1.73.0 to 1.83.0 (matches rust-version in Cargo.toml) - Fix LICENSE link from master to main branch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Prepare the v0.3.0 release of bdk-wasm. This is the first release since v0.2.0 (Aug 2025) and includes significant API expansion, dependency upgrades, and CI modernization.
Changes in this PR
versioninCargo.tomlfrom0.2.0→0.3.0CHANGELOG.md— move all unreleased entries under[0.3.0] - 2026-03-16Cargo.tomlvalues (wasm-bindgen0.2.114,web-sys0.3.91,wasm-bindgen-test0.3.64)Transaction::to_bytes/Transaction::from_bytesentry to changelogHighlights since v0.2.0
New APIs:
fee_absolute,add_utxo/add_utxos,only_spend_from,enable_rbf/enable_rbf_with_sequence,nlocktime,version,change_policy/do_not_spend_change,ChangeSpendPolicyenumbuild_fee_bump,create_single,mark_used/unmark_used,insert_txout,apply_update_events(events API),create_from_two_path_descriptor(BIP-389)exclude_unconfirmed,exclude_below_confirmationsto_bytes/from_bytesfor consensus serialization (BDK ↔ LDK interop)Amount::is_dust(script),ScriptBuf::minimal_non_dust(),ScriptBuf::minimal_non_dust_custom(fee_rate)Infrastructure:
Downstream impact
The dust check methods (
Amount::is_dust,ScriptBuf::minimal_non_dust) enable downstream consumers like snap-bitcoin-wallet to replace hardcoded dust limit values with proper script-aware dust checking from BDK.