From e2e34c036955965063cbf84388abfde1e41119d1 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 31 Dec 2024 10:36:27 +1100 Subject: [PATCH] Bump version to 0.4.0 In preparation for release add a changelog entry, bump the version number, and update the lock files. --- 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 cbd3639..f03606a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.4.0 - 2024-12-31 + +This release makes the `ArbitraryOrd` trait object safe. + +- Remove `Eq` trait bound [#31](https://github.com/rust-bitcoin/rust-ordered/pull/31) + # 0.3.0 - 2024-12-30 - Bump the MSRV to Rust `v1.63.0` [#17](https://github.com/rust-bitcoin/rust-ordered/pull/17) diff --git a/Cargo-minimal.lock b/Cargo-minimal.lock index cd18680..66201a3 100644 --- a/Cargo-minimal.lock +++ b/Cargo-minimal.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "ordered" -version = "0.3.0" +version = "0.4.0" diff --git a/Cargo-recent.lock b/Cargo-recent.lock index cd18680..66201a3 100644 --- a/Cargo-recent.lock +++ b/Cargo-recent.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "ordered" -version = "0.3.0" +version = "0.4.0" diff --git a/Cargo.toml b/Cargo.toml index 8cc6b9c..ef34fad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ordered" -version = "0.3.0" +version = "0.4.0" authors = ["Tobin C. Harding "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/rust-ordered/"