Skip to content

Commit

Permalink
fix: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Jan 6, 2024
1 parent b6ed3ba commit 556f3a9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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.4"
version = "0.14.0-dev.5"
name = "tenderdash-abci"
edition = "2021"
license = "Apache-2.0"
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.4"
version = "0.14.0-dev.5"
name = "tenderdash-proto-compiler"
authors = ["Informal Systems <[email protected]>"]
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.4"
version = "0.14.0-dev.5"
name = "tenderdash-proto"
edition = "2021"
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions proto/build.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use std::env;

fn main() {
let version = env!("CARGO_PKG_VERSION");
// let version = env!("CARGO_PKG_VERSION");

// check if TENDERDASH_COMMITISH is alrady set; if not, set it to the current
// check if TENDERDASH_COMMITISH is already set; if not, set it to the current
// version
let commitish = env::var("TENDERDASH_COMMITISH").unwrap_or_default();
if commitish.is_empty() {
env::set_var("TENDERDASH_COMMITISH", "v".to_owned() + version);
env::set_var("TENDERDASH_COMMITISH", "v0.14.0-dev.1".to_owned());
}

tenderdash_proto_compiler::proto_compile();
Expand Down

0 comments on commit 556f3a9

Please sign in to comment.