Skip to content

Commit

Permalink
Merge pull request #554 from Concordium/release-wasm-engine-p7
Browse files Browse the repository at this point in the history
Prepare release of smart contract engine crates
  • Loading branch information
limemloh authored Sep 9, 2024
2 parents 8c925ef + a7ad459 commit e83282f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
7 changes: 7 additions & 0 deletions smart-contracts/wasm-chain-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased changes

## concordium-smart-contract-engine 6.0.0 (2024-09-09)

- Bump `concordium-wasm` to version 5 used by Concordium node version 7.0.0.
- Changes Wasm to `Artifact` compilation, meaning already compiled `Artifacts` will need to be recompiled.
- Introduces a new version of cost assignment used in Concordium Protocol Version 7.
- Loose the minor version for `concordium-contracts-common` dependency.

## concordium-smart-contract-engine 5.0.0 (2024-03-25)

- `TestHost` no longer implements the `ValidateImportExport` trait, instead use `NoDuplicateImport` struct.
Expand Down
4 changes: 2 additions & 2 deletions smart-contracts/wasm-chain-integration/Cargo.lock

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

6 changes: 3 additions & 3 deletions smart-contracts/wasm-chain-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "concordium-smart-contract-engine"
version = "5.0.0"
version = "6.0.0"
authors = ["Concordium <developers@concordium.com>"]
edition = "2021"
license-file = "../../LICENSE"
Expand Down Expand Up @@ -42,10 +42,10 @@ rand = { version = "=0.8", features = ["small_rng"] }

[dependencies.concordium-wasm]
path = "../wasm-transform"
version = "4"
version = "5"

[dependencies.concordium-contracts-common]
version = "9.0"
version = "9"
path = "../contracts-common/concordium-contracts-common"
features = ["derive-serde"]

Expand Down
2 changes: 2 additions & 0 deletions smart-contracts/wasm-transform/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased changes

## concordium-wasm 5.0.0 (2024-09-09)

- Revise the compilation of Wasm modules to `Artifacts`. The notion of the
executable artifact is changed to no longer work with a stack.
- The `Handler` trait is revised to provide `handle_opcode` function information
Expand Down
2 changes: 1 addition & 1 deletion smart-contracts/wasm-transform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "concordium-wasm"
version = "4.0.0"
version = "5.0.0"
authors = ["Concordium <developers@concordium.com>"]
edition = "2021"
license-file = "../../LICENSE"
Expand Down

0 comments on commit e83282f

Please sign in to comment.