From f37b5732901133eff0b8b11744f743c71533c240 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 16 Oct 2024 15:39:58 +1100 Subject: [PATCH] bitcoin: Set version to 0.33.0-alpha We would like to create branches in other repos/crates that track master in this repo for testing purposes. In order to do so we need a non-0.32 version otherwise `cargo` pulls from crates.io. Set the version to `0.33.0-alpha` - try not to get too excited, this release is a looong way away. --- 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 b8f1f663a..3dcf23fe0 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -53,7 +53,7 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.0-rc1" +version = "0.33.0-alpha" dependencies = [ "arbitrary", "base58ck", diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 1b6cb85ae..01982df32 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -52,7 +52,7 @@ dependencies = [ [[package]] name = "bitcoin" -version = "0.32.0-rc1" +version = "0.33.0-alpha" dependencies = [ "arbitrary", "base58ck", diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index f6839907c..65e04ed54 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-alpha" authors = ["Andrew Poelstra "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-bitcoin/"