From 18dbf7bd58a81ecfafc0e167abbabe84f7dd5b06 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 2 Feb 2024 11:49:06 +1100 Subject: [PATCH] Set version to beta In preparation for release add a CHANGELOG file and set the version to `0.1.0-beta.0` - BOOM! --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d2125cc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# 0.1.0-beta.0 - 2024-02-02 + +The initial beta release. The aim of this release is to make the new PSBT v2 API available for beta +testing. Currently we expose the v0 API pretty much as it is in `rust-bitcoin` and `rust-miniscript`. + +Enjoy! diff --git a/Cargo.toml b/Cargo.toml index 93afa96..c17faa2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psbt-v2" -version = "0.1.0" +version = "0.1.0-beta.0" authors = ["Tobin C. Harding "] license = "CC0-1.0" repository = "https://github.com/tcharding/rust-psbt/"