Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try latest Wasmer with singlepass on Windows #1138

Merged
merged 8 commits into from
Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,8 @@ jobs:
name: Unit tests
command: cargo unit-test --locked
- run:
name: Integration tests (singlepass backend)
command: cargo integration-test --locked --no-default-features
name: Integration tests
command: cargo integration-test --locked
- run:
name: Build and run schema generator
command: cargo schema --locked
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to
- cosmwasm-std: New const methods `Uint64::to_be_bytes`/`::to_le_bytes`.
- cosmwasm-vm: The check_contracts tool now has a `--supported-features` option
that defaults to "iterator,staking,stargate".
- cosmwasm-vm: The default `singlepass` compiler is now supported on 64-bit
Windows.
- cosmwasm-std: Add missing `DivideByZeroError` export.

### Changed
Expand All @@ -20,6 +22,7 @@ and this project adheres to
Remove `&[]` if you don't need a contract balance or use the new
`mock_dependencies_with_balance` if you need a balance.
- cosmwasm-vm: Unlock cache mutex before module instantiation.
- cosmwasm-vm: `wasmer` version bumped `2.0.0 -> 2.1.0`

### Removed

Expand Down
Loading