Skip to content

Commit

Permalink
chore(deps): bump cosmwasm to v2.1.0 and MSRV to 1.72.1 (#1276)
Browse files Browse the repository at this point in the history
* deps: bump cosmwasm to v2.1.0 + MSRV to 1.72.1

* chore: add unclog

* update cosmwasm optimizer docker image

* nit: remove unnecessary comment

* update rust versions

* bump cargo msrv version

* update lockfiles

---------

Co-authored-by: Ranadeep Biswas <mail@rnbguy.at>
  • Loading branch information
Farhad-Shabani and rnbguy authored Jul 11, 2024
1 parent 7ff41b3 commit c6420c4
Show file tree
Hide file tree
Showing 10 changed files with 535 additions and 235 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [ibc] Bump MSRV version to 1.72.1
([\#1276](https://github.com/cosmos/ibc-rs/pull/1276))
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [ibc-client] Bump cosmwasm version to 2.1.0
([\#1276](https://github.com/cosmos/ibc-rs/pull/1276))
6 changes: 3 additions & 3 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ jobs:
test-msrv:
timeout-minutes: 30
env:
CARGO_MSRV_VERSION: 0.16.0-beta.20
MSRV: 1.71.1
CARGO_MSRV_VERSION: 0.16.0-beta.23
MSRV: 1.72.1
strategy:
matrix:
param:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
cargo msrv --version
- name: Calculate MSRV
run: cargo msrv --output-format minimal --min 1.64.0
run: cargo msrv --output-format minimal --min 1.68.0

- name: Build with MSRV
uses: actions-rs/cargo@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-cw-clients.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
-v "$(pwd)":/code \
-v "$(pwd)"/target:/target \
-v "${HOME}/.cargo/registry":/usr/local/cargo/registry \
cosmwasm/optimizer:0.15.1 ./ibc-clients/ics07-tendermint/cw-contract
cosmwasm/optimizer:0.16.0 ./ibc-clients/ics07-tendermint/cw-contract
- name: Fix permissions
run: |
Expand Down
11 changes: 4 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exclude = [
version = "0.53.0"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.71.1"
rust-version = "1.72.1"
readme = "README.md"
repository = "https://github.com/cosmos/ibc-rs"
authors = [ "Informal Systems <hello@informal.systems>" ]
Expand Down Expand Up @@ -119,12 +119,9 @@ tendermint-rpc = { version = "0.37.0", default-features = fals
tendermint-testgen = { version = "0.37.0", default-features = false }

# cosmwasm dependencies
### Note: Kept at the following version to match the CosmWasm module version
### used by chains supporting the wasm-enabled version of ibc-go v7.3
### (This is the min version of `ibc-go` that supports `08-wasm` light clients)
cosmwasm-schema = { version = "2.0.4" }
cosmwasm-std = { version = "2.0.4" }
cosmwasm-vm = { version = "2.0.4" }
cosmwasm-schema = { version = "2.1.0" }
cosmwasm-std = { version = "2.1.0" }
cosmwasm-vm = { version = "2.1.0" }
cw-storage-plus = { version = "2.0.0" }

# parity dependencies
Expand Down
Loading

0 comments on commit c6420c4

Please sign in to comment.