From 734f571de70b2d9fc3e8d018a8d4c19ec33174cf Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 26 Jun 2024 11:18:45 +0200 Subject: [PATCH 1/3] chore: release rs-tenderdash-abci v1.0.0-dev.1 --- abci/Cargo.toml | 2 +- proto-compiler/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- proto/build.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index 1e1c511..2be56cc 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -1,5 +1,5 @@ [package] -version = "0.14.0-dev.12" +version = "1.0.0-dev.1" name = "tenderdash-abci" edition = "2021" license = "Apache-2.0" diff --git a/proto-compiler/Cargo.toml b/proto-compiler/Cargo.toml index 0e3c3e7..1ed692b 100644 --- a/proto-compiler/Cargo.toml +++ b/proto-compiler/Cargo.toml @@ -1,5 +1,5 @@ [package] -version = "0.14.0-dev.12" +version = "1.0.0-dev.1" name = "tenderdash-proto-compiler" authors = ["Informal Systems ", "Dash Core Group"] edition = "2021" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 8f3b095..62f3984 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,5 +1,5 @@ [package] -version = "0.14.0-dev.12" +version = "1.0.0-dev.1" name = "tenderdash-proto" edition = "2021" license = "Apache-2.0" diff --git a/proto/build.rs b/proto/build.rs index c98d49c..6870499 100644 --- a/proto/build.rs +++ b/proto/build.rs @@ -4,7 +4,7 @@ use tenderdash_proto_compiler::GenerationMode; fn main() { // default Tenderdash version to use if TENDERDASH_COMMITISH is not set - const DEFAULT_VERSION: &str = "v0.14.0-dev.5"; + const DEFAULT_VERSION: &str = "v1.0.0-dev.1"; // check if TENDERDASH_COMMITISH is already set; if not, set it to the current // version From d7ebf001b57705924cd153d8d428a92e6fadd266 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:34:23 +0200 Subject: [PATCH 2/3] build: set tenderdash to v1.0.0-dev.2 --- proto/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/build.rs b/proto/build.rs index 6870499..515f79c 100644 --- a/proto/build.rs +++ b/proto/build.rs @@ -4,7 +4,7 @@ use tenderdash_proto_compiler::GenerationMode; fn main() { // default Tenderdash version to use if TENDERDASH_COMMITISH is not set - const DEFAULT_VERSION: &str = "v1.0.0-dev.1"; + const DEFAULT_VERSION: &str = "v1.0.0-dev.2"; // check if TENDERDASH_COMMITISH is already set; if not, set it to the current // version From c7073b90d2a89e400e85b927b3a9bae3bf270912 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:39:40 +0200 Subject: [PATCH 3/3] test(abci): ignore ipv6 grpc test --- abci/tests/grpc.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/abci/tests/grpc.rs b/abci/tests/grpc.rs index b75516c..cf600be 100644 --- a/abci/tests/grpc.rs +++ b/abci/tests/grpc.rs @@ -35,6 +35,7 @@ async fn test_ipv4_server() { #[cfg(feature = "docker-tests")] #[tokio::test] +#[ignore = "IPv6 does not work for gRPC, most likely bug on Tenderdash side"] /// Test server listening on ipv6 address. /// /// See [tcp_server_test()].