From 46e0ce59a32fa53edaaae027de146d6a30cb358c Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 30 Apr 2024 07:43:01 +1000 Subject: [PATCH] bitcoin: Set version number During the recent release cycle we left `bitcoin` on the last rc version. Set the version number to `v0.33.0-unreleased` to make it obvious what it is. Close: #2724 --- Cargo-minimal.lock | 2 +- Cargo-recent.lock | 2 +- bitcoin/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 11991ea31..a8497bd1d 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -47,7 +47,7 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.0-rc1" +version = "0.33.0-unreleased" dependencies = [ "base58ck", "base64", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 8383f5228..4e0d1fdc5 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -46,7 +46,7 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.0-rc1" +version = "0.33.0-unreleased" dependencies = [ "base58ck", "base64", diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 4f4a6c8b3..24b9d166f 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoin" -version = "0.32.0-rc1" +version = "0.33.0-unreleased" authors = ["Andrew Poelstra "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin/"