Skip to content

Commit 087bcb2

Browse files
committed
Bump version to 0.29.0
Upgrade the `hashes` range dependency to enable usage of `v0.14.0`. Then in preparation for release add a changelog entry and bump the version. The only other change since last release is modification of an error type, no need to mention that in the changelog.
1 parent 873ad47 commit 087bcb2

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.29.0 - 2024-03-24
2+
3+
* Upgrade hashes range dependency to allow usage of `v0.14.0`
4+
15
# 0.28.2 - 2024-01-30
26

37
* Implement `Hash` for `Scalar` [#674](https://github.com/rust-bitcoin/rust-secp256k1/pull/674)

Cargo-minimal.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
257257

258258
[[package]]
259259
name = "secp256k1"
260-
version = "0.28.2"
260+
version = "0.29.0"
261261
dependencies = [
262262
"bincode",
263263
"bitcoin_hashes",

Cargo-recent.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
178178

179179
[[package]]
180180
name = "secp256k1"
181-
version = "0.28.2"
181+
version = "0.29.0"
182182
dependencies = [
183183
"bincode",
184184
"bitcoin_hashes",

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secp256k1"
3-
version = "0.28.2"
3+
version = "0.29.0"
44
authors = [ "Dawid Ciężarkiewicz <[email protected]>",
55
"Andrew Poelstra <[email protected]>" ]
66
license = "CC0-1.0"
@@ -40,7 +40,7 @@ serde = { version = "1.0.103", default-features = false, optional = true }
4040

4141
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
4242
# the respective -std feature e.g., hashes-std
43-
hashes = { package = "bitcoin_hashes", version = ">= 0.12, <= 0.13", default-features = false, optional = true }
43+
hashes = { package = "bitcoin_hashes", version = ">= 0.12, <= 0.14", default-features = false, optional = true }
4444
rand = { version = "0.8", default-features = false, optional = true }
4545

4646
[dev-dependencies]

0 commit comments

Comments
 (0)