Skip to content

Commit

Permalink
Prepping for v006 release (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
adizere authored Dec 23, 2020
1 parent db2be6f commit 5c5b20e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"
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 <[email protected]>"
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.

0 comments on commit 5c5b20e

Please sign in to comment.