Skip to content

Commit

Permalink
Update to tendermint v0.17.1 (informalsystems#516)
Browse files Browse the repository at this point in the history
* Update to tendermint-rs v0.17.1

* Add missing call to .into()

* Update changelog

* Formatting
  • Loading branch information
romac authored Jan 12, 2021
1 parent 8d34540 commit c24ecf2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@

### IMPROVEMENTS

- Update to `tendermint-rs` v0.17.1 ([#517])


[#507]: https://github.com/informalsystems/ibc-rs/issues/507
[#517]: https://github.com/informalsystems/ibc-rs/issues/517

## v0.0.6
*December 23, 2020*
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ exclude = [

[patch.crates-io]

tendermint = { git = "https://github.com/informalsystems/tendermint-rs", branch = "romac/skip-verif" }
tendermint-rpc = { git = "https://github.com/informalsystems/tendermint-rs", branch = "romac/skip-verif" }
tendermint-proto = { git = "https://github.com/informalsystems/tendermint-rs", branch = "romac/skip-verif" }
tendermint-light-client = { git = "https://github.com/informalsystems/tendermint-rs", branch = "romac/skip-verif" }
tendermint-testgen = { git = "https://github.com/informalsystems/tendermint-rs", branch = "romac/skip-verif" }
tendermint = { git = "https://github.com/informalsystems/tendermint-rs", branch = "ibc" }
tendermint-rpc = { git = "https://github.com/informalsystems/tendermint-rs", branch = "ibc" }
tendermint-proto = { git = "https://github.com/informalsystems/tendermint-rs", branch = "ibc" }
tendermint-light-client = { git = "https://github.com/informalsystems/tendermint-rs", branch = "ibc" }
tendermint-testgen = { git = "https://github.com/informalsystems/tendermint-rs", branch = "ibc" }
8 changes: 4 additions & 4 deletions relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ hex = "0.4"
crossbeam-channel = "0.5.0"

[dependencies.tendermint-proto]
version = "=0.17.0"
version = "=0.17.1"

[dependencies.tendermint]
version = "=0.17.0"
version = "=0.17.1"

[dependencies.tendermint-rpc]
version = "=0.17.0"
version = "=0.17.1"
features = ["http-client", "websocket-client"]

[dependencies.tendermint-light-client]
version = "=0.17.0"
version = "=0.17.1"

[dependencies.abscissa_core]
version = "0.5.2"
Expand Down
10 changes: 5 additions & 5 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ dirs-next = "2.0.0"
dyn-clone = "1.0.3"

[dependencies.tendermint]
version = "=0.17.0"
version = "=0.17.1"

[dependencies.tendermint-rpc]
version = "=0.17.0"
version = "=0.17.1"
features = ["http-client", "websocket-client"]

[dependencies.tendermint-light-client]
version = "=0.17.0"
version = "=0.17.1"

[dependencies.tendermint-proto]
version = "=0.17.0"
version = "=0.17.1"

[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.1" } # Needed for generating (synthetic) light blocks.

0 comments on commit c24ecf2

Please sign in to comment.