From 52a0b7cd37d7adcffea7b35eaf9ee10c7a6c8135 Mon Sep 17 00:00:00 2001 From: lklimek <842586+lklimek@users.noreply.github.com> Date: Wed, 27 Mar 2024 18:38:48 +0100 Subject: [PATCH] build: release 0.14.0-dev.11 for tenderdash v0.14.0-dev.5 (#60) * build: release 0.14.0-dev.11 for tenderdash v0.14.0-dev.5 * test(kvstore): app_verstion must be set --- abci/Cargo.toml | 2 +- abci/tests/kvstore.rs | 1 + proto-compiler/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- proto/build.rs | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index a87992e..98ecd53 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,5 +1,5 @@ [package] -version = "0.14.0-dev.10" +version = "0.14.0-dev.11" name = "tenderdash-abci" edition = "2021" license = "Apache-2.0" diff --git a/abci/tests/kvstore.rs b/abci/tests/kvstore.rs index bcd4109..92f04bc 100644 --- a/abci/tests/kvstore.rs +++ b/abci/tests/kvstore.rs @@ -270,6 +270,7 @@ impl Application for KVStoreABCI<'_> { tx_records, tx_results, app_hash: kvstore_lock.calculate_uncommited_state_hash().to_vec(), + app_version: 1, ..Default::default() }) } diff --git a/proto-compiler/Cargo.toml b/proto-compiler/Cargo.toml index 89a746f..d4e242e 100644 --- a/proto-compiler/Cargo.toml +++ b/proto-compiler/Cargo.toml @@ -1,5 +1,5 @@ [package] -version = "0.14.0-dev.10" +version = "0.14.0-dev.11" name = "tenderdash-proto-compiler" authors = ["Informal Systems ", "Dash Core Group"] edition = "2021" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index a0cd356..e816b5b 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,5 +1,5 @@ [package] -version = "0.14.0-dev.10" +version = "0.14.0-dev.11" name = "tenderdash-proto" edition = "2021" license = "Apache-2.0" diff --git a/proto/build.rs b/proto/build.rs index 2087ba7..8ddf011 100644 --- a/proto/build.rs +++ b/proto/build.rs @@ -2,7 +2,7 @@ use std::env; fn main() { // default Tenderdash version to use if TENDERDASH_COMMITISH is not set - const DEFAULT_VERSION: &str = "v0.14.0-dev.4"; + const DEFAULT_VERSION: &str = "v0.14.0-dev.5"; // check if TENDERDASH_COMMITISH is already set; if not, set it to the current // version