Skip to content

Commit 783b783

Browse files
committed
Enable cosmwasm_2_1 feature where applicable
1 parent e15bc91 commit 783b783

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,15 +438,15 @@ jobs:
438438
- run:
439439
name: Build library for native target (all features)
440440
working_directory: ~/project/packages/std
441-
command: cargo build --locked --features abort,iterator,staking,stargate,cosmwasm_2_0
441+
command: cargo build --locked --features abort,iterator,staking,stargate,cosmwasm_2_1
442442
- run:
443443
name: Build library for wasm target (all features)
444444
working_directory: ~/project/packages/std
445-
command: cargo wasm --locked --features abort,iterator,staking,stargate,cosmwasm_2_0
445+
command: cargo wasm --locked --features abort,iterator,staking,stargate,cosmwasm_2_1
446446
- run:
447447
name: Run unit tests (all features)
448448
working_directory: ~/project/packages/std
449-
command: cargo test --locked --features abort,iterator,staking,stargate,cosmwasm_2_0
449+
command: cargo test --locked --features abort,iterator,staking,stargate,cosmwasm_2_1
450450
- save_cache:
451451
paths:
452452
- /usr/local/cargo/registry
@@ -1037,7 +1037,7 @@ jobs:
10371037
- run:
10381038
name: Clippy linting on std (all feature flags)
10391039
working_directory: ~/project/packages/std
1040-
command: cargo clippy --all-targets --tests --features abort,iterator,staking,stargate,cosmwasm_2_0 -- -D warnings
1040+
command: cargo clippy --all-targets --tests --features abort,iterator,staking,stargate,cosmwasm_2_1 -- -D warnings
10411041
- run:
10421042
name: Clippy linting on vm (no feature flags)
10431043
working_directory: ~/project/packages/vm

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"abort",
44
"stargate",
55
"staking",
6-
"cosmwasm_2_0"
6+
"cosmwasm_2_1"
77
]
88
}

packages/go-gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
publish = false
77

88
[dependencies]
9-
cosmwasm-std = { version = "2.0.1", path = "../std", features = ["cosmwasm_2_0", "staking", "stargate"] }
9+
cosmwasm-std = { version = "2.0.1", path = "../std", features = ["cosmwasm_2_1", "staking", "stargate"] }
1010
cosmwasm-schema = { version = "2.0.1", path = "../schema" }
1111
anyhow = "1"
1212
Inflector = "0.11.4"

packages/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
readme = "README.md"
1010

1111
[package.metadata.docs.rs]
12-
features = ["abort", "stargate", "staking", "cosmwasm_2_0"]
12+
features = ["abort", "stargate", "staking", "cosmwasm_2_1"]
1313

1414
[features]
1515
default = ["iterator", "abort"]

0 commit comments

Comments
 (0)