Skip to content

Commit

Permalink
Make G2PubkeyRfc public & set version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Jul 19, 2023
1 parent e9c7f9e commit cf80516
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.1] - 2023-07-19

### Added

- Make `G2PubkeyRfc` public

## [0.6.0] - 2023-07-19

### Added
Expand Down Expand Up @@ -40,7 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migrate from paired to pairing.
This increases the code size but reduces the verification cost.

[unreleased]: https://github.com/noislabs/drand-verify/compare/v0.6.0...HEAD
[unreleased]: https://github.com/noislabs/drand-verify/compare/v0.6.1...HEAD
[0.6.1]: https://github.com/noislabs/drand-verify/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/noislabs/drand-verify/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/noislabs/drand-verify/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/noislabs/drand-verify/compare/v0.3.0...v0.4.0
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "drand-verify"
description = "A drand verification library."
version = "0.6.0"
version = "0.6.1"
authors = ["Simon Warta <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ mod verify_js;

pub use points::InvalidPoint;
pub use randomness::derive_randomness;
pub use verify::{G1Pubkey, G2Pubkey, Pubkey, VerificationError};
pub use verify::{G1Pubkey, G2Pubkey, G2PubkeyRfc, Pubkey, VerificationError};

0 comments on commit cf80516

Please sign in to comment.