Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jul 29, 2024
1 parent fc36f2f commit 0433b82
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ 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
Expand Down
4 changes: 2 additions & 2 deletions devtools/check_contracts_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0433b82

Please sign in to comment.