From 7cd22d4ad5c7d12c786600ac0d75575b68720f35 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 30 Jan 2025 09:41:19 +1100 Subject: [PATCH] Bump version to 1.0.0-alpha.0 In preparation for release bump the version number, add a changelog entry, and update the lock files. This is the alpha release. Explicitly includes deprecated code that will be deleted in the `1.0` release. This crate is the first of the so-called 'leaf crates' in `rust-bitcoin`. Defined as crates we control at the bottom of the dependency tree of the `bitcoin` crate. I know its supposed to be dependency graph but then there would be no 'bottom'. There must be a real term for this? --- CHANGELOG.md | 6 ++++++ Cargo-minimal.lock | 2 +- Cargo-recent.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f03606a..af73ee1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.0.0-alpha.0 - 2025-30-01 + +Alpha 1.0 release - LFG! + +- No code changes since `0.4.0`, improvement to the README only [#33](https://github.com/rust-bitcoin/rust-ordered/issues/33). + # 0.4.0 - 2024-12-31 This release makes the `ArbitraryOrd` trait object safe. diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 66201a3..c2d4db1 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "ordered" -version = "0.4.0" +version = "1.0.0-alpha.0" diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 66201a3..c2d4db1 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "ordered" -version = "0.4.0" +version = "1.0.0-alpha.0" diff --git a/Cargo.toml b/Cargo.toml index ef34fad..e1431ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ordered" -version = "0.4.0" +version = "1.0.0-alpha.0" authors = ["Tobin C. Harding "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-ordered/"