Skip to content

Commit

Permalink
Bump version for contract changes
Browse files Browse the repository at this point in the history
  • Loading branch information
slawlor committed Jan 4, 2023
1 parent e53d346 commit 19114c9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion akd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd"
version = "0.8.5"
version = "0.8.6"
authors = ["Harjasleen Malvai <[email protected]>", "Kevin Lewi <[email protected]>", "Sean Lawlor <[email protected]>"]
description = "An implementation of an auditable key directory"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion akd_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd_client"
version = "0.8.5"
version = "0.8.6"
authors = ["Harjasleen Malvai <[email protected]>", "Kevin Lewi <[email protected]>", "Sean Lawlor <[email protected]>"]
description = "Client verification companion for the auditable key directory with limited dependencies."
license = "MIT OR Apache-2.0"
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.8.5"
version = "0.8.6"
authors = ["Sean Lawlor <[email protected]>"]
description = "Core utilities for the auditable-key-directory suite of crates (akd and akd_client)"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion akd_local_auditor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "akd_local_auditor"
default-run = "akd_local_auditor"
version = "0.8.5"
version = "0.0.0"
authors = ["Sean Lawlor <[email protected]>"]
edition = "2018"
publish = false
Expand Down
6 changes: 3 additions & 3 deletions akd_mysql/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd_mysql"
version = "0.8.5"
version = "0.8.6"
authors = ["Harjasleen Malvai <[email protected]>", "Kevin Lewi <[email protected]>", "Sean Lawlor <[email protected]>"]
description = "A MySQL storage layer implementation for an auditable key directory (AKD)"
license = "MIT OR Apache-2.0"
Expand All @@ -25,9 +25,9 @@ async-recursion = "0.3"
mysql_async = "0.31"
mysql_common = "0.29.1"
log = { version = "0.4.8", features = ["kv_unstable"] }
akd = { path = "../akd", version = "0.8.5", features = ["serde_serialization"], default-features = false }
akd = { path = "../akd", version = "0.8.6", features = ["serde_serialization"], default-features = false }

[dev-dependencies]
criterion = "0.3"
serial_test = "0.5"
akd = { path = "../akd", version = "0.8.5", features = ["blake3", "public-tests"], default-features = false }
akd = { path = "../akd", version = "0.8.6", features = ["blake3", "public-tests"], default-features = false }
6 changes: 3 additions & 3 deletions akd_test_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "akd_test_tools"
version = "0.8.5"
version = "0.8.6"
authors = ["Evan Au <[email protected]>", "Sean Lawlor <[email protected]>"]
description = "Test utilities and tooling"
license = "MIT OR Apache-2.0"
Expand All @@ -22,9 +22,9 @@ serde = "1.0"
async-trait = "0.1"
thread-id = "3"

akd = { path = "../akd", features = ["serde_serialization"], version = "0.8.5" }
akd = { path = "../akd", features = ["serde_serialization"], version = "0.8.6" }

[dev-dependencies]
assert_fs="1"

akd = { path = "../akd", features = ["public-tests", "rand", "serde_serialization"], version = "0.8.5" }
akd = { path = "../akd", features = ["public-tests", "rand", "serde_serialization"], version = "0.8.6" }

0 comments on commit 19114c9

Please sign in to comment.