Skip to content

Commit

Permalink
Release version 0.29.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kixunil committed Sep 6, 2024
1 parent 7ad2f2e commit f74877a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.29.1 - 2024-09-06

* Deprecate `hashes` reexport

Because the reexport can have any of the *incompatible* versions using it is prone to breakage.
The `bitcoin_hashes` crate is not used in our API anyway, so you should just depend on it yourself
using a version range that's appropriate for your crate.
* Fix version range of the `bitcoin_hashes` crate.

# 0.29.0 - 2024-04-02

* Deprecate `ThirtyTwoByteHash` [#686](https://github.com/rust-bitcoin/rust-secp256k1/pull/686)
Expand Down
2 changes: 1 addition & 1 deletion Cargo-minimal.lock
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"

[[package]]
name = "secp256k1"
version = "0.29.0"
version = "0.29.1"
dependencies = [
"bincode",
"bitcoin_hashes",
Expand Down
2 changes: 1 addition & 1 deletion Cargo-recent.lock
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"

[[package]]
name = "secp256k1"
version = "0.29.0"
version = "0.29.1"
dependencies = [
"bincode",
"bitcoin_hashes",
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secp256k1"
version = "0.29.0"
version = "0.29.1"
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
license = "CC0-1.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ extern crate test;

/// Deprecated reexport of the `bitcoin-hashes` crate.
#[cfg(feature = "hashes")]
#[deprecated(since = "TBD", note = "Depend on `hashes` in your own crate.")]
#[deprecated(since = "0.29.1", note = "Depend on `hashes` in your own crate.")]
pub mod hashes {
pub use ::hashes::*;
}
Expand Down

0 comments on commit f74877a

Please sign in to comment.