Skip to content

Commit

Permalink
Publishing v0.12.0-pre.6 (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlewi authored Jun 28, 2024
1 parent 1952168 commit 6930c13
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.12.0-pre.6 (June 27, 2024)
* Fixing a preloads ordering bug

## 0.12.0-pre.5 (June 3, 2024)
* Only instantiate metrics attribute in storage manager when runtime metrics is enabled. This avoids an unnecessary
import of atomic types, which not all architectures support.
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.5"
akd = "0.12.0-pre.6"
```

### 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.5"
version = "0.12.0-pre.6"
authors = ["akd contributors"]
description = "An implementation of an auditable key directory"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -51,7 +51,7 @@ default = [

[dependencies]
## Required dependencies ##
akd_core = { version = "0.12.0-pre.5", path = "../akd_core", default-features = false, features = [
akd_core = { version = "0.12.0-pre.6", 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.5"
version = "0.12.0-pre.6"
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.5"
version = "0.12.0-pre.6"
authors = ["akd contributors"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down

0 comments on commit 6930c13

Please sign in to comment.