Skip to content

Commit 5c5b20e

Browse files
authored
Prepping for v006 release (#472)
1 parent db2be6f commit 5c5b20e

File tree

6 files changed

+18
-11
lines changed

6 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## Unreleased Changes
44

5+
## v0.0.6
6+
*December 23, 2020*
7+
8+
This release focuses on upgrading the relayer and ibc modules to the latest interfaces from the ecosystem:
9+
tendermint-rs `v0.17`, which brings the protobuf changes from tendermint `v0.34.0`, plus alignment with
10+
the latest cosmos proto versions from `v0.40.0-rc5` (sometimes called 'stargate-5').
11+
512
### FEATURES
613
- Update to tendermint-rs version `0.17` ([#451])
714
- Update to cosmos-sdk IBC proto version `v0.40.0-rc5` ([#451])

modules/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -21,7 +21,7 @@ mocks = [ "tendermint-testgen" ]
2121

2222
[dependencies]
2323
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
24-
ibc-proto = { version = "0.5.0", path = "../proto" }
24+
ibc-proto = { version = "0.6.0", path = "../proto" }
2525
ics23 = "0.6.0"
2626
anomaly = "0.2.0"
2727
chrono = "0.4"
@@ -51,10 +51,10 @@ version = "=0.17.0"
5151
version = "=0.17.0"
5252

5353
[dependencies.tendermint-testgen]
54-
version = "0.17.0"
54+
version = "=0.17.0"
5555
optional = true
5656

5757
[dev-dependencies]
5858
tokio = { version = "0.2", features = ["macros"] }
5959
subtle-encoding = { version = "0.5" }
60-
tendermint-testgen = { version = "0.17.0" } # Needed for generating (synthetic) light blocks.
60+
tendermint-testgen = { version = "=0.17.0" } # Needed for generating (synthetic) light blocks.

proto-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-proto-compiler"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Greg Szabo <[email protected]>"]
55
edition = "2018"
66
publish = false

proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-proto"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Greg Szabo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"

relayer-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "relayer-cli"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
authors = [
66
"Informal Systems <[email protected]>"
@@ -9,7 +9,7 @@ authors = [
99
[dependencies]
1010
relayer = { path = "../relayer" }
1111
ibc = { path = "../modules" }
12-
ibc-proto = { version = "0.5.0", path = "../proto" }
12+
ibc-proto = { version = "0.6.0", path = "../proto" }
1313
anomaly = "0.2.0"
1414
gumdrop = "0.7"
1515
serde = { version = "1", features = ["serde_derive"] }

relayer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "relayer"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
authors = [
66
"Informal Systems <[email protected]>"
@@ -9,7 +9,7 @@ authors = [
99
[dependencies]
1010
subtle-encoding = "0.5"
1111
ibc = { path = "../modules" }
12-
ibc-proto = { version = "0.5.0", path = "../proto" }
12+
ibc-proto = { version = "0.6.0", path = "../proto" }
1313
anomaly = "0.2.0"
1414
async-trait = "0.1.24"
1515
humantime-serde = "1.0.0"
@@ -57,4 +57,4 @@ version = "=0.17.0"
5757
[dev-dependencies]
5858
serial_test = "0.5.0"
5959
ibc = { path = "../modules", features = [ "mocks" ] }
60-
tendermint-testgen = { version = "0.17.0" } # Needed for generating (synthetic) light blocks.
60+
tendermint-testgen = { version = "=0.17.0" } # Needed for generating (synthetic) light blocks.

0 commit comments

Comments
 (0)