Skip to content

Commit 85beb07

Browse files
authored
Publishing v0.11.0 (#418)
1 parent 2381129 commit 85beb07

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.11.0 (October 26, 2023)
4+
* Added error-handling for various edge-cases when performing akd_core verification
5+
* Updated dependencies
6+
37
## 0.10.0 (September 21, 2023)
48
* Updated VRF checks and public key validation
59
* Added duplicate entries check in publish

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Installation
2222
Add the following line to the dependencies of your `Cargo.toml`:
2323

2424
```
25-
akd = "0.10"
25+
akd = "0.11"
2626
```
2727

2828
### Minimum Supported Rust Version

akd/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akd"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["akd contributors"]
55
description = "An implementation of an auditable key directory"
66
license = "MIT OR Apache-2.0"
@@ -51,7 +51,7 @@ default = [
5151

5252
[dependencies]
5353
## Required dependencies ##
54-
akd_core = { version = "0.10.0", path = "../akd_core", default-features = false, features = [
54+
akd_core = { version = "0.11.0", path = "../akd_core", default-features = false, features = [
5555
"vrf",
5656
] }
5757
async-recursion = "1"
@@ -73,7 +73,7 @@ paste = { version = "1", optional = true }
7373
criterion = "0.5"
7474
serial_test = "2"
7575
proptest = "1"
76-
proptest-derive = "0.3"
76+
proptest-derive = "0.4"
7777
colored = "2"
7878
once_cell = "1"
7979
ctor = "0.2"

akd_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akd_core"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["akd contributors"]
55
description = "Core utilities for the akd crate"
66
license = "MIT OR Apache-2.0"
@@ -57,7 +57,7 @@ paste = { version = "1", optional = true }
5757
[dev-dependencies]
5858
bincode = "1"
5959
proptest = "1"
60-
proptest-derive = "0.3"
60+
proptest-derive = "0.4"
6161
rand = "0.8"
6262
serde = { version = "1", features = ["derive"] }
6363
criterion = "0.5"

examples/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = ["akd contributors"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -19,13 +19,13 @@ anyhow = "1"
1919
async-trait = "0.1"
2020
colored = "2"
2121
clap = { version = "4", features = ["derive"] }
22-
dialoguer = "0.10"
22+
dialoguer = "0.11"
2323
hex = "0.4"
2424
indicatif = "0.17"
2525
log = { version = "0.4", features = ["kv_unstable"] }
2626
multi_log = "0.1"
2727
mysql_async = "0.32"
28-
mysql_common = "0.30"
28+
mysql_common = "0.31"
2929
once_cell = "1"
3030
protobuf = "3"
3131
rand = "0.8"

examples/src/fixture_generator/examples/experimental.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ args:
2222
- 10
2323
out: examples/src/fixture_generator/examples/
2424
no_generated_updates: false
25-
version: 0.10.0
25+
version: 0.11.0
2626
configuration: experimental
2727
domain_label: ExampleLabel
2828

examples/src/fixture_generator/examples/whatsapp_v1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ args:
2222
- 10
2323
out: examples/src/fixture_generator/examples/
2424
no_generated_updates: false
25-
version: 0.10.0
25+
version: 0.11.0
2626
configuration: whatsapp_v1
2727
domain_label: ExampleLabel
2828

0 commit comments

Comments
 (0)