diff --git a/Cargo.toml b/Cargo.toml index 72e9309..921b8a8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ global-context = ["std"] global-context-less-secure = ["global-context"] [dependencies] -secp256k1-sys = { version = "0.5.0", default-features = false, path = "./secp256k1-sys" } +secp256k1-sys = { version = "0.6.0", default-features = false, path = "./secp256k1-sys" } serde = { version = "1.0", default-features = false, optional = true } # You likely only want to enable these if you explicitly do not want to use "std", otherwise enable diff --git a/secp256k1-sys/CHANGELOG.md b/secp256k1-sys/CHANGELOG.md index 11584c0..2a8cef7 100644 --- a/secp256k1-sys/CHANGELOG.md +++ b/secp256k1-sys/CHANGELOG.md @@ -1,4 +1,9 @@ +# 0.6.0 - 2022-06-21 + +* [Bump MSRV to 1.41](https://github.com/rust-bitcoin/rust-secp256k1/pull/331) +* [Re-implement `Ord` on `PublicKey` using upstream ordering function](https://github.com/rust-bitcoin/rust-secp256k1/pull/449) + # 0.5.1 - 2022-04-30 * [Fix WASM build](https://github.com/rust-bitcoin/rust-secp256k1/pull/421) diff --git a/secp256k1-sys/Cargo.toml b/secp256k1-sys/Cargo.toml index ae93625..275ffd7 100644 --- a/secp256k1-sys/Cargo.toml +++ b/secp256k1-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "secp256k1-sys" -version = "0.5.2" +version = "0.6.0" authors = [ "Dawid Ciężarkiewicz ", "Andrew Poelstra ", "Steven Roose " ]