Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for v0.0.6 release #472

Merged
merged 1 commit into from
Dec 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased Changes

## v0.0.6
*December 23, 2020*

This release focuses on upgrading the relayer and ibc modules to the latest interfaces from the ecosystem:
tendermint-rs `v0.17`, which brings the protobuf changes from tendermint `v0.34.0`, plus alignment with
the latest cosmos proto versions from `v0.40.0-rc5` (sometimes called 'stargate-5').

### FEATURES
- Update to tendermint-rs version `0.17` ([#451])
- Update to cosmos-sdk IBC proto version `v0.40.0-rc5` ([#451])
Expand Down
8 changes: 4 additions & 4 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -21,7 +21,7 @@ mocks = [ "tendermint-testgen" ]

[dependencies]
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.5.0", path = "../proto" }
ibc-proto = { version = "0.6.0", path = "../proto" }
ics23 = "0.6.0"
anomaly = "0.2.0"
chrono = "0.4"
Expand Down Expand Up @@ -51,10 +51,10 @@ version = "=0.17.0"
version = "=0.17.0"

[dependencies.tendermint-testgen]
version = "0.17.0"
version = "=0.17.0"
optional = true

[dev-dependencies]
tokio = { version = "0.2", features = ["macros"] }
subtle-encoding = { version = "0.5" }
tendermint-testgen = { version = "0.17.0" } # Needed for generating (synthetic) light blocks.
tendermint-testgen = { version = "=0.17.0" } # Needed for generating (synthetic) light blocks.
2 changes: 1 addition & 1 deletion proto-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-proto-compiler"
version = "0.1.0"
version = "0.2.0"
authors = ["Greg Szabo <greg@philosobear.com>"]
edition = "2018"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-proto"
version = "0.5.0"
version = "0.6.0"
authors = ["Greg Szabo <greg@informal.systems>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "relayer-cli"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
authors = [
"Informal Systems <hello@informal.systems>"
Expand All @@ -9,7 +9,7 @@ authors = [
[dependencies]
relayer = { path = "../relayer" }
ibc = { path = "../modules" }
ibc-proto = { version = "0.5.0", path = "../proto" }
ibc-proto = { version = "0.6.0", path = "../proto" }
anomaly = "0.2.0"
gumdrop = "0.7"
serde = { version = "1", features = ["serde_derive"] }
Expand Down
6 changes: 3 additions & 3 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "relayer"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
authors = [
"Informal Systems <hello@informal.systems>"
Expand All @@ -9,7 +9,7 @@ authors = [
[dependencies]
subtle-encoding = "0.5"
ibc = { path = "../modules" }
ibc-proto = { version = "0.5.0", path = "../proto" }
ibc-proto = { version = "0.6.0", path = "../proto" }
anomaly = "0.2.0"
async-trait = "0.1.24"
humantime-serde = "1.0.0"
Expand Down Expand Up @@ -57,4 +57,4 @@ version = "=0.17.0"
[dev-dependencies]
serial_test = "0.5.0"
ibc = { path = "../modules", features = [ "mocks" ] }
tendermint-testgen = { version = "0.17.0" } # Needed for generating (synthetic) light blocks.
tendermint-testgen = { version = "=0.17.0" } # Needed for generating (synthetic) light blocks.