Skip to content

Commit

Permalink
Increment minor ibc-proto version. (#683)
Browse files Browse the repository at this point in the history
* Increment minor ibc-proto version.

* Update dep on ibc-proto; h/t @romac

* Upd changelog
  • Loading branch information
adizere authored Feb 18, 2021
1 parent 572f158 commit ae36bba
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ involving packet acks in a 3-chain setup. More details below.
### FEATURES
- [ibc-relayer]
- Listen to channel close initialization event and perform the close handshake ([#560])
- Updated to tendermint-rs `v0.18.1` ([#682], [#671])

### IMPROVEMENTS

Expand Down Expand Up @@ -115,7 +116,9 @@ involving packet acks in a 3-chain setup. More details below.
[#626]: https://github.com/informalsystems/ibc-rs/issues/626
[#643]: https://github.com/informalsystems/ibc-rs/issues/643
[#665]: https://github.com/informalsystems/ibc-rs/issues/665
[#671]: https://github.com/informalsystems/ibc-rs/pull/671
[#672]: https://github.com/informalsystems/ibc-rs/issues/672
[#682]: https://github.com/informalsystems/ibc-rs/issues/682

## v0.1.0
*February 4, 2021*
Expand Down
23 changes: 12 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mocks = [ "tendermint-testgen" ]

[dependencies]
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.7.0", path = "../proto" }
ibc-proto = { version = "0.7.1", path = "../proto" }
ics23 = "0.6.0"
anomaly = "0.2.0"
chrono = "0.4"
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.7.0"
version = "0.7.1"
authors = ["Greg Szabo <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ profiling = ["ibc-relayer/profiling"]
[dependencies]
ibc = { version = "0.1.1", path = "../modules" }
ibc-relayer = { version = "0.1.1", path = "../relayer" }
ibc-proto = { version = "0.7.0", path = "../proto" }
ibc-proto = { version = "0.7.1", path = "../proto" }

anomaly = "0.2.0"
gumdrop = "0.7"
Expand Down
5 changes: 3 additions & 2 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ description = """
profiling = []

[dependencies]
ibc = { version = "0.1.1", path = "../modules" }
ibc-proto = { version = "0.7.1", path = "../proto" }

subtle-encoding = "0.5"
ibc = { version = "0.1.1", path = "../modules" }
ibc-proto = { version = "0.7.0", path = "../proto" }
anomaly = "0.2.0"
async-trait = "0.1.24"
humantime-serde = "1.0.0"
Expand Down

0 comments on commit ae36bba

Please sign in to comment.