Skip to content

Commit

Permalink
Publishing v0.11.0 (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlewi authored Oct 27, 2023
1 parent 2381129 commit 85beb07
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.11.0 (October 26, 2023)
* Added error-handling for various edge-cases when performing akd_core verification
* Updated dependencies

## 0.10.0 (September 21, 2023)
* Updated VRF checks and public key validation
* Added duplicate entries check in publish
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.10"
akd = "0.11"
```

### Minimum Supported Rust Version
Expand Down
6 changes: 3 additions & 3 deletions akd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd"
version = "0.10.0"
version = "0.11.0"
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.10.0", path = "../akd_core", default-features = false, features = [
akd_core = { version = "0.11.0", path = "../akd_core", default-features = false, features = [
"vrf",
] }
async-recursion = "1"
Expand All @@ -73,7 +73,7 @@ paste = { version = "1", optional = true }
criterion = "0.5"
serial_test = "2"
proptest = "1"
proptest-derive = "0.3"
proptest-derive = "0.4"
colored = "2"
once_cell = "1"
ctor = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions akd_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd_core"
version = "0.10.0"
version = "0.11.0"
authors = ["akd contributors"]
description = "Core utilities for the akd crate"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -57,7 +57,7 @@ paste = { version = "1", optional = true }
[dev-dependencies]
bincode = "1"
proptest = "1"
proptest-derive = "0.3"
proptest-derive = "0.4"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
criterion = "0.5"
Expand Down
6 changes: 3 additions & 3 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "0.10.0"
version = "0.11.0"
authors = ["akd contributors"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -19,13 +19,13 @@ anyhow = "1"
async-trait = "0.1"
colored = "2"
clap = { version = "4", features = ["derive"] }
dialoguer = "0.10"
dialoguer = "0.11"
hex = "0.4"
indicatif = "0.17"
log = { version = "0.4", features = ["kv_unstable"] }
multi_log = "0.1"
mysql_async = "0.32"
mysql_common = "0.30"
mysql_common = "0.31"
once_cell = "1"
protobuf = "3"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion examples/src/fixture_generator/examples/experimental.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ args:
- 10
out: examples/src/fixture_generator/examples/
no_generated_updates: false
version: 0.10.0
version: 0.11.0
configuration: experimental
domain_label: ExampleLabel

Expand Down
2 changes: 1 addition & 1 deletion examples/src/fixture_generator/examples/whatsapp_v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ args:
- 10
out: examples/src/fixture_generator/examples/
no_generated_updates: false
version: 0.10.0
version: 0.11.0
configuration: whatsapp_v1
domain_label: ExampleLabel

Expand Down

0 comments on commit 85beb07

Please sign in to comment.