Skip to content

Release 1.0.0-beta.3 #1607

Closed
Closed
@notmandatory

Description

@notmandatory

Create a new major (beta) release

Summary

BDK Wallet 1.0.0-beta.3 is out! 🚀 Fixed transaction creation to not skip unused addresses, added function for sorting wallet transactions and option to change default BNB fallback back coin selection. We moved the bdk_hwi crate functionality to the rust-hwi repo.

Commit

TBD

Changelog

Checklist

Release numbering must follow Semantic Versioning. These steps assume the current master branch development version is 1.0.0-beta.2.

On the day of the feature freeze

Change the master branch to the 1.0.0-beta.3 version:

  • Ensure all alpha milestone issues and PRs closed, archive them on the project board.
  • Switch to the master branch.
  • Create a new PR branch called release/bump_dev_1.0.0_beta.3.
  • Create a "draft" release page and release notes comparing master commmit with prior tag v1.0.0-beta.2
  • Determine which crates need a major release bump and which only need a patch release with semver-checks against the previous release tag.
    cargo semver-checks --baseline-rev v1.0.0-beta.2
  • Bump the bump_dev_1.0.0_beta.3 branch to the next development version.
    • Bump the modified crates versions in their Cargo.toml files. [update this list with only changed crates]

      • bdk_core
      • bdk_chain
      • bdk_bitcoind_rpc
      • bdk_electrum
      • bdk_esplora
      • bdk_file_store
      • bdk_testenv
      • bdk_wallet
    • The commit message should be: [update this list with only changed crates]

      Bump bdk_wallet version to 1.0.0-beta.3
      
      bdk_core to 0.1.1
      bdk_chain to 0.18.1
      bdk_bitcoind_rpc to 0.14.1
      bdk_electrum to 0.17.1
      bdk_esplora to 0.17.1
      bdk_file_store to 0.15.1
      bdk_testenv to 0.8.1
      
  • Create PR and merge the release/bump_dev_1.0.0-beta.3 branch to master. Bump bdk_wallet version to 1.0.0-beta.3 #1608
    • Title PR "Bump bdk_wallet version to 1.0.0-beta.3".

On the day of the release

Tag and publish new release:

  • Add a tag to the HEAD commit in the master branch.
    • git tag v1.0.0-beta.3 --sign -e
    • The tag name should be v1.0.0-beta.3
    • The first line of the tag message should be "Release 1.0.0-beta.3".
    • In the body of the tag message put a copy of the Summary and Changelog for the release.
    • Make sure the tag is signed, for extra safety use the explicit --sign flag.
  • Wait for the CI to finish one last time.
  • Push the new tag to the bitcoindevkit/bdk repo.
    • git push upstream --tag v1.0.0-beta.3
  • Publish all the updated crates to crates.io. [update this list with only changed crates]
    • cargo publish -p <crate name>
    • bdk_core
    • bdk_chain
    • bdk_testenv
    • bdk_bitcoind_rpc
    • bdk_electrum
    • bdk_esplora
    • bdk_file_store
    • bdk_wallet
  • Create the release on GitHub.
    • Go to "tags", click on the dots on the right and select "Create Release".
    • Set the title to Release 1.0.0-beta.3.
    • In the release notes body put the Summary and Changelog.
    • Use the "+ Auto-generate release notes" button to add details from included PRs.
    • Until we reach a final 1.0.0 release check the "Pre-release" box.
  • Make sure the new release shows up on crates.io and that the docs are built correctly on docs.rs.
  • Announce the release, using the Summary, on Discord, Twitter and Nostr.
  • Celebrate 🎉

Metadata

Metadata

Labels

releaseRelease related issue or PR

Type

No type

Projects

Status

Done

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions