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