From 655427a75fea04fbd65e7739514e2b477cb1b1ed Mon Sep 17 00:00:00 2001 From: Kevin Lewi Date: Tue, 23 Jul 2024 00:14:44 -0700 Subject: [PATCH] Publishing v0.12.0-pre.7 (#447) --- CHANGELOG.md | 4 ++++ README.md | 2 +- akd/Cargo.toml | 4 ++-- akd_core/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0927187..147db058 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.12.0-pre.7 (July 22, 2024) +* Added an efficiency optimization for history proof generation and + verification (incompatible with previous logic) + ## 0.12.0-pre.6 (June 27, 2024) * Fixing a preloads ordering bug diff --git a/README.md b/README.md index fc2ff247..d291f783 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Installation Add the following line to the dependencies of your `Cargo.toml`: ``` -akd = "0.12.0-pre.6" +akd = "0.12.0-pre.7" ``` ### Minimum Supported Rust Version diff --git a/akd/Cargo.toml b/akd/Cargo.toml index 7a6ce247..e9050022 100644 --- a/akd/Cargo.toml +++ b/akd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akd" -version = "0.12.0-pre.6" +version = "0.12.0-pre.7" authors = ["akd contributors"] description = "An implementation of an auditable key directory" license = "MIT OR Apache-2.0" @@ -51,7 +51,7 @@ default = [ [dependencies] ## Required dependencies ## -akd_core = { version = "0.12.0-pre.6", path = "../akd_core", default-features = false, features = [ +akd_core = { version = "0.12.0-pre.7", path = "../akd_core", default-features = false, features = [ "vrf", ] } async-recursion = "1" diff --git a/akd_core/Cargo.toml b/akd_core/Cargo.toml index c68944b3..1538fea2 100644 --- a/akd_core/Cargo.toml +++ b/akd_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akd_core" -version = "0.12.0-pre.6" +version = "0.12.0-pre.7" authors = ["akd contributors"] description = "Core utilities for the akd crate" license = "MIT OR Apache-2.0" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3c1b6259..18781c64 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples" -version = "0.12.0-pre.6" +version = "0.12.0-pre.7" authors = ["akd contributors"] license = "MIT OR Apache-2.0" edition = "2021"