Skip to content

Commit

Permalink
deps: removed support for cosmwasm v1.3 (#90)
Browse files Browse the repository at this point in the history
* deps: ran 'cargo update'

* deps: moved to cosmwasm 1.4

* imp: updated testing contracts

* deps: moved version to v0.6

* ci: run e2e tests if Cargo files are modified
  • Loading branch information
srdtrk committed Mar 23, 2024
1 parent 7bc3a0f commit e1e9a69
Show file tree
Hide file tree
Showing 8 changed files with 129 additions and 129 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
paths:
- '**.rs'
- '**.go'
- '**.toml'
- '**.lock'
- '.github/workflows/e2e.yml'
permissions:
contents: read
Expand Down
80 changes: 40 additions & 40 deletions Cargo.lock

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

8 changes: 3 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw-ica-controller"
version = "0.5.0"
version = "0.6.0"
authors = ["srdtrk <srdtrk@hotmail.com>"]
edition = "2021"
description = "This is a CosmWasm implementation of an ICS-27 interchain accounts controller."
Expand Down Expand Up @@ -37,15 +37,13 @@ staking = ["cosmwasm-std/staking"]
optimize = """docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/optimizer:0.15.0
cosmwasm/optimizer:0.15.1
"""

[dependencies]
cosmwasm-schema = "1.5.0"
cosmwasm-std = { version = "1.5.0", features = [
"cosmwasm_1_3",
# Enable this if you only deploy to chains that have CosmWasm 1.4 or higher
# "cosmwasm_1_4",
"cosmwasm_1_4",
"stargate",
"ibc3",
] }
Expand Down
4 changes: 2 additions & 2 deletions testing/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The contracts are built automatically in the github CI. To build the contracts m
docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="devcontract_cache_burner",target=/code/contracts/burner/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/optimizer:0.15.0 ./testing/contracts/callback-counter
cosmwasm/optimizer:0.15.1 ./testing/contracts/callback-counter
```

### `cw-ica-owner`
Expand All @@ -32,5 +32,5 @@ docker run --rm -v "$(pwd)":/code \
docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="devcontract_cache_burner",target=/code/contracts/burner/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/optimizer:0.15.0 ./testing/contracts/cw-ica-owner
cosmwasm/optimizer:0.15.1 ./testing/contracts/cw-ica-owner
```
Loading

0 comments on commit e1e9a69

Please sign in to comment.