From f736f9f6012cfc6b9d47071eff0249dd4cc37105 Mon Sep 17 00:00:00 2001 From: timorleph <145755355+timorleph@users.noreply.github.com> Date: Wed, 17 Apr 2024 09:58:23 +0200 Subject: [PATCH] Bump rmc version (#438) This was missed in one earlier PR and caused version pushes to not work for a while. They failed silently so it took a moment to nitice. Due to new versions not being pushed I'm not bumping the consensus version, despite the deps changing. --- Cargo.lock | 2 +- consensus/Cargo.toml | 2 +- rmc/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d45641d..5c6d4f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,7 +116,7 @@ dependencies = [ [[package]] name = "aleph-bft-rmc" -version = "0.12.0" +version = "0.13.0" dependencies = [ "aleph-bft-crypto", "aleph-bft-mock", diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index 0cc2d57..161291d 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -13,7 +13,7 @@ readme = "../README.md" description = "AlephBFT is an asynchronous and Byzantine fault tolerant consensus protocol aimed at ordering arbitrary messages (transactions). It has been designed to continuously operate even in the harshest conditions: with no bounds on message-delivery delays and in the presence of malicious actors. This makes it an excellent fit for blockchain-related applications." [dependencies] -aleph-bft-rmc = { path = "../rmc", version = "0.12" } +aleph-bft-rmc = { path = "../rmc", version = "0.13" } aleph-bft-types = { path = "../types", version = "0.13" } anyhow = "1.0" async-trait = "0.1" diff --git a/rmc/Cargo.toml b/rmc/Cargo.toml index 860eae9..6cb607a 100644 --- a/rmc/Cargo.toml +++ b/rmc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aleph-bft-rmc" -version = "0.12.0" +version = "0.13.0" edition = "2021" authors = ["Cardinal Cryptography"] categories = ["algorithms", "cryptography"]