Skip to content

Commit c0349ce

Browse files
committed
Prep for release.
1 parent be739ff commit c0349ce

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bc-crypto"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
description = "A uniform API for cryptographic primitives used in Blockchain Commons projects"
66
authors = ["Blockchain Commons"]

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,13 @@
2727

2828
```toml
2929
[dependencies]
30-
bc-crypto = "0.5.0"
30+
bc-crypto = "0.6.0"
3131
```
3232

3333
## Version History
3434

35+
- **0.6.0, February 4, 2025** - BREAKING CHANGE: Renamed x25519 key methods to clarify their purpose.
36+
3537
- **0.5.0, September 14, 2024** - BREAKING CHANGE: Removed pre-hashing (tagged hash) support for Schnorr signatures, making them BIP-340 compliant. Schnorr signatures produced by previous versions of this crate will now only verify if you pre-hash the image yourself using the BIP-340 method and the tag you previously used, if any.
3638

3739
## Related Projects

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/bc-crypto/0.5.0")]
1+
#![doc(html_root_url = "https://docs.rs/bc-crypto/0.6.0")]
22
#![warn(rust_2018_idioms)]
33

44
//! # Introduction
@@ -24,7 +24,7 @@
2424
//!
2525
//! ```toml
2626
//! [dependencies]
27-
//! bc-crypto = "0.5.0"
27+
//! bc-crypto = "0.6.0"
2828
//! ```
2929
3030
/// The `hash` module contains functions for hashing data.

0 commit comments

Comments
 (0)