Skip to content

Commit

Permalink
build: release 0.14.0-dev.11 for tenderdash v0.14.0-dev.5 (#60)
Browse files Browse the repository at this point in the history
* build: release 0.14.0-dev.11 for tenderdash v0.14.0-dev.5

* test(kvstore): app_verstion must be set
  • Loading branch information
lklimek authored Mar 27, 2024
1 parent 883d1f5 commit 52a0b7c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion abci/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 1 addition & 0 deletions abci/tests/kvstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
})
}
Expand Down
2 changes: 1 addition & 1 deletion proto-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.14.0-dev.10"
version = "0.14.0-dev.11"
name = "tenderdash-proto-compiler"
authors = ["Informal Systems <[email protected]>", "Dash Core Group"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion proto/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 52a0b7c

Please sign in to comment.