diff --git a/README.md b/README.md index 6ff99334..177e9bac 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ More details are available [in the book][reference-link-implementation-details]. - Import AlephBFT in your crate ```toml [dependencies] - aleph-bft = "^0.33" + aleph-bft = "^0.34" ``` - The main entry point is the `run_session` function, which returns a Future that runs the consensus algorithm. diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index f84a56f9..0382f9fe 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aleph-bft" -version = "0.33.0" +version = "0.34.0" edition = "2021" authors = ["Cardinal Cryptography"] categories = ["algorithms", "data-structures", "cryptography", "database"] @@ -14,7 +14,7 @@ description = "AlephBFT is an asynchronous and Byzantine fault tolerant consensu [dependencies] aleph-bft-rmc = { path = "../rmc", version = "0.11" } -aleph-bft-types = { path = "../types", version = "0.11" } +aleph-bft-types = { path = "../types", version = "0.12" } anyhow = "1.0" async-trait = "0.1" codec = { package = "parity-scale-codec", version = "3.0", default-features = false, features = ["derive"] } diff --git a/examples/ordering/src/dataio.rs b/examples/ordering/src/dataio.rs index 9672aae2..db48a019 100644 --- a/examples/ordering/src/dataio.rs +++ b/examples/ordering/src/dataio.rs @@ -1,5 +1,5 @@ use aleph_bft_types::{ - DataProvider as DataProviderT, FinalizationHandler as FinalizationHandlerT, NodeIndex, Round + DataProvider as DataProviderT, FinalizationHandler as FinalizationHandlerT, NodeIndex, Round, }; use async_trait::async_trait; use codec::{Decode, Encode}; diff --git a/mock/Cargo.toml b/mock/Cargo.toml index 73a2a367..07cec124 100644 --- a/mock/Cargo.toml +++ b/mock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aleph-bft-mock" -version = "0.11.1" +version = "0.12.0" edition = "2021" authors = ["Cardinal Cryptography"] documentation = "https://docs.rs/?" @@ -11,7 +11,7 @@ readme = "./README.md" description = "Mock implementations of traits required by the aleph-bft package. Do NOT use outside of testing!" [dependencies] -aleph-bft-types = { path = "../types", version = "0.11" } +aleph-bft-types = { path = "../types", version = "0.12" } async-trait = "0.1" codec = { package = "parity-scale-codec", version = "3.0", default-features = false, features = ["derive"] } futures = "0.3" diff --git a/mock/src/dataio.rs b/mock/src/dataio.rs index a40c5df2..92ccae44 100644 --- a/mock/src/dataio.rs +++ b/mock/src/dataio.rs @@ -1,5 +1,5 @@ use aleph_bft_types::{ - DataProvider as DataProviderT, FinalizationHandler as FinalizationHandlerT, NodeIndex, Round + DataProvider as DataProviderT, FinalizationHandler as FinalizationHandlerT, NodeIndex, Round, }; use async_trait::async_trait; use codec::{Decode, Encode}; diff --git a/rmc/Cargo.toml b/rmc/Cargo.toml index 70361d2a..c3c7d1d0 100644 --- a/rmc/Cargo.toml +++ b/rmc/Cargo.toml @@ -14,7 +14,7 @@ description = "Reliable MultiCast - a primitive for Reliable Broadcast protocol. [dependencies] aleph-bft-crypto = { path = "../crypto", version = "0.8" } -aleph-bft-types = { path = "../types", version = "0.11" } +aleph-bft-types = { path = "../types", version = "0.12" } async-trait = "0.1" codec = { package = "parity-scale-codec", version = "3.0", default-features = false, features = ["derive"] } futures = "0.3" diff --git a/types/Cargo.toml b/types/Cargo.toml index d0ec7e3b..560f5877 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aleph-bft-types" -version = "0.11.0" +version = "0.12.0" edition = "2021" authors = ["Cardinal Cryptography"] documentation = "https://docs.rs/?"