From 1b3837a7893517ee50d1b9677bdac384b4ad02d8 Mon Sep 17 00:00:00 2001 From: Kevin Lewi Date: Mon, 18 Oct 2021 16:47:13 -0700 Subject: [PATCH] Publishing v0.2 (#31) --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab84145..d0b7c74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.2.0 (October 18, 2021) + +* Removed the CipherSuite interface +* Added the "danger" feature for exposing internal functions +* General improvements to the group interface + ## 0.1.0 (September 29, 2021) * Initial release diff --git a/Cargo.toml b/Cargo.toml index e34a1ac..6e5930d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "voprf" -version = "0.1.0" +version = "0.2.0" description = "An implementation of a verifiable oblivious pseudorandom function (VOPRF)" authors = ["Kevin Lewi "] repository = "https://github.com/novifinancial/voprf/" diff --git a/README.md b/README.md index 3745f88..1d2eb74 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Installation Add the following line to the dependencies of your `Cargo.toml`: ``` -voprf = "0.1.0" +voprf = "0.2" ``` ### Minimum Supported Rust Version