diff --git a/.mergify.yml b/.mergify.yml index 4895cfe74..d3222625b 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -1,6 +1,6 @@ # See https://doc.mergify.io/configuration.html -pull_request_rules: +pull_request_rules : - name: automerge to main with label automerge conditions: - "#approved-reviews-by>=1" diff --git a/CHANGELOG.md b/CHANGELOG.md index 23f1352c9..3ecd39e5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,10 +19,9 @@ and this project adheres to ### Fixed -- cosmwasm-std: Fix CWA-2024-002 +- cosmwasm-std: Fix CWA-2024-002 - cosmwasm-std: Fix `Reply` deserialization on CosmWasm 1.x chains ([#2159]) -- cosmwasm-std: Updated `QueryRequest` enum to use the default generic parameter - `Empty`. ([#2165]) +- cosmwasm-std: Updated `QueryRequest` enum to use the default generic parameter `Empty`. ([#2165]) [#2159]: https://github.com/CosmWasm/cosmwasm/pull/2159 [#2165]: https://github.com/CosmWasm/cosmwasm/pull/2165 diff --git a/devtools/check_contracts_full.sh b/devtools/check_contracts_full.sh index 35947c102..9bf4c55a1 100755 --- a/devtools/check_contracts_full.sh +++ b/devtools/check_contracts_full.sh @@ -3,9 +3,9 @@ set -o errexit -o nounset -o pipefail command -v shellcheck >/dev/null && shellcheck "$0" GLOBIGNORE="contracts/floaty/" -for contract_dir in contracts/*/; do +for contract_dir in contracts/*/; do ( - cd "$contract_dir" + cd "$contract_dir" cargo fmt mkdir -p target/wasm32-unknown-unknown/release/ touch target/wasm32-unknown-unknown/release/"$(basename "$contract_dir" | tr - _)".wasm