Skip to content

Commit

Permalink
Prepare for 0.12.0-pre.8 release (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
afterdusk authored Aug 23, 2024
1 parent ebf407a commit f9bbe29
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.12.0-pre.8 (August 23, 2024)
* Fixed a bug in key history API that occurs when a proof is being generated while a transaction is
being committed
* Updated test vectors to the latest version

## 0.12.0-pre.7 (July 22, 2024)
* Added an efficiency optimization for history proof generation and
verification (incompatible with previous logic)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Installation
Add the following line to the dependencies of your `Cargo.toml`:

```
akd = "0.12.0-pre.7"
akd = "0.12.0-pre.8"
```

### Minimum Supported Rust Version
Expand Down
4 changes: 2 additions & 2 deletions akd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd"
version = "0.12.0-pre.7"
version = "0.12.0-pre.8"
authors = ["akd contributors"]
description = "An implementation of an auditable key directory"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -52,7 +52,7 @@ default = [

[dependencies]
## Required dependencies ##
akd_core = { version = "0.12.0-pre.7", path = "../akd_core", default-features = false, features = [
akd_core = { version = "0.12.0-pre.8", path = "../akd_core", default-features = false, features = [
"vrf",
] }
async-recursion = "1"
Expand Down
2 changes: 1 addition & 1 deletion akd_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd_core"
version = "0.12.0-pre.7"
version = "0.12.0-pre.8"
authors = ["akd contributors"]
description = "Core utilities for the akd crate"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "0.12.0-pre.7"
version = "0.12.0-pre.8"
authors = ["akd contributors"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down

0 comments on commit f9bbe29

Please sign in to comment.