From dafd713f198d47b4cf3cb61a9aa9b4ab849d3356 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 30 Dec 2024 08:28:28 +1100 Subject: [PATCH] Bump the version to 0.3.0 In preparation for release add a changelog entry, bump the version number, and update the lock files. This will hopefully be the final release prior to `v1.0`. The only change in going to `v1.0` should be removal of the two deprecated functions. --- 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 790338a..cbd3639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.3.0 - 2024-12-30 + +- Bump the MSRV to Rust `v1.63.0` [#17](https://github.com/rust-bitcoin/rust-ordered/pull/17) +- Add default generic type to `ArbitraryOrd` for RHS [#27](https://github.com/rust-bitcoin/rust-ordered/pull/27) +- Deprecate unneeded functions `as_inner` and `into_inner` [#28](https://github.com/rust-bitcoin/rust-ordered/pull/28) + # 0.2.2 - 2023-12-18 Fix the repository link in the manifest [#12](https://github.com/rust-bitcoin/rust-ordered/pull/12) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index 1e49a0a..cd18680 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "ordered" -version = "0.2.2" +version = "0.3.0" diff --git a/Cargo-recent.lock b/Cargo-recent.lock index 1e49a0a..cd18680 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "ordered" -version = "0.2.2" +version = "0.3.0" diff --git a/Cargo.toml b/Cargo.toml index 2b14e17..8cc6b9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ordered" -version = "0.2.2" +version = "0.3.0" authors = ["Tobin C. Harding "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-ordered/"