From 556f3a9b6724bdbe44acf8045cd87144a997bccb Mon Sep 17 00:00:00 2001 From: Quantum Explorer Date: Sat, 6 Jan 2024 20:41:43 +0700 Subject: [PATCH] fix: bump version --- abci/Cargo.toml | 2 +- proto-compiler/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- proto/build.rs | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index baa151b..349507a 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -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" diff --git a/proto-compiler/Cargo.toml b/proto-compiler/Cargo.toml index 26b509c..96ca1e6 100644 --- a/proto-compiler/Cargo.toml +++ b/proto-compiler/Cargo.toml @@ -1,5 +1,5 @@ [package] -version = "0.14.0-dev.4" +version = "0.14.0-dev.5" name = "tenderdash-proto-compiler" authors = ["Informal Systems "] edition = "2021" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 44344cd..1795016 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -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" diff --git a/proto/build.rs b/proto/build.rs index 41c909c..c094761 100644 --- a/proto/build.rs +++ b/proto/build.rs @@ -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();