Skip to content

Commit

Permalink
Merge pull request #1879 from multiversx/merge-master
Browse files Browse the repository at this point in the history
master -> 0.55
  • Loading branch information
andrei-marinica authored Nov 27, 2024
2 parents 43d5c1f + a37d26f commit 5b74562
Show file tree
Hide file tree
Showing 457 changed files with 2,790 additions and 1,706 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ coverage.md
my-vm-tests.sh
quick.sh
template-test
install-debugger-test

# Zip output with example wasm binaries
examples-wasm.zip
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,21 @@ They are:
- `multiversx-sdk-http`
- `multiversx-sdk-dapp`

## [sc 0.54.4] - 2024-11-22
- `sc-meta`
- `install debugger` CLI that prepares VSCode extension for debugging;
- fixed a crash involving templates and installers.
- Deprecated `#[derive(TypeAbi)]` and added an additional warning in the macro.

## [sc 0.54.3] - 2024-11-18
- `#[storage_mapper_from_address]` fixes for: `FungibleTokenMapper`, `NonFungibleTokenMapper`, `TokenAttributesMapper`, `UniqueIdMapper`, `UserMapper`, `AddressToIdMapper`.

## [sc 0.54.2, codec 0.21.1, chain 0.11.1, sdk 0.7.1] - 2024-11-15
- Codec improvements:
- `MultiValueX` - `TopDecodeMultiLength` implementation fix;
- `ManagedVecItem` implented for MultiValue2 and MultiValue3.
- `sc-meta snippets` improvements.

## [sc 0.54.1] - 2024-11-13
- `sc-meta` `cs` - ChainSimulator CLI, which provides handy functionality to:
- install the chain simulator image in Docker;
Expand Down
92 changes: 51 additions & 41 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions chain/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multiversx-chain-core"
version = "0.11.0"
version = "0.11.1"
edition = "2021"

authors = [
Expand All @@ -20,6 +20,6 @@ categories = ["cryptography::cryptocurrencies", "development-tools::debugging"]
bitflags = "=2.6.0"

[dependencies.multiversx-sc-codec]
version = "=0.21.0"
version = "=0.21.1"
path = "../../data/codec"
features = ["derive"]
4 changes: 2 additions & 2 deletions chain/vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multiversx-chain-vm"
version = "0.11.0"
version = "0.11.1"
edition = "2021"

authors = [
Expand Down Expand Up @@ -35,7 +35,7 @@ rand_seeder = "0.3.0"
ed25519-dalek = "2.1.0"

[dependencies.multiversx-chain-core]
version = "=0.11.0"
version = "=0.11.1"
path = "../core"

[dependencies.multiversx-chain-vm-executor]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/large-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = "src/large_storage.rs"

[dependencies.multiversx-sc]
version = "0.54.1"
version = "0.54.4"
path = "../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.54.1"
version = "0.54.4"
path = "../../../framework/scenario"
Loading

0 comments on commit 5b74562

Please sign in to comment.