Skip to content

Commit 2d08ac8

Browse files
authored
Merge branch 'master' into digital-cash-refactoring
2 parents af83540 + 6e7a567 commit 2d08ac8

File tree

392 files changed

+1339
-1104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

392 files changed

+1339
-1104
lines changed

.github/workflows/lldb-formatter-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
- name: Setup vscode-lldb
2929
run: |
3030
unzip codelldb-linux-x64.vsix -d vscode-lldb
31-
mkdir -p $HOME/.vscode/extensions/vadimcn.vscode-lldb-1.11.1/
32-
mv vscode-lldb/extension/* $HOME/.vscode/extensions/vadimcn.vscode-lldb-1.11.1/
31+
mkdir -p $HOME/.vscode/extensions/vadimcn.vscode-lldb-1.11.3/
32+
mv vscode-lldb/extension/* $HOME/.vscode/extensions/vadimcn.vscode-lldb-1.11.3/
3333
3434
- name: Run the rust tests
3535
run: |

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ They are:
3232
- `multiversx-sdk-http`
3333
- `multiversx-sdk-dapp`
3434

35+
## [sc 0.56.1, chain 0.13.1, sdk 0.8.2] - 2025-02-06
36+
- Allow setting gas for callback for direct transfers.
37+
- NestedEncode for interaction types: TestAddress, TestScAddress and TestTokenIdentifier.
38+
- Bugfix: pretty representation for ManagedAddress when debugging.
39+
- Upgrade dependency: ruplacer.
3540

3641
## [sc 0.56.0, chain 0.13.0, sdk 0.8.1] - 2025-01-23
3742
- Rust VM support for readonly sync calls.

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chain/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multiversx-chain-core"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
edition = "2021"
55

66
authors = [

chain/vm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multiversx-chain-vm"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
edition = "2021"
55

66
authors = [
@@ -29,13 +29,13 @@ sha3 = "0.10.6"
2929
itertools = "0.14.0"
3030
hex-literal = "=0.4.1"
3131
bitflags = "=2.8.0"
32-
colored = "2.2"
33-
rand = { version= "0.8.5", optional = true }
32+
colored = "2.2" # TODO: doesn't support >v2.2 (can't build on nightly)
33+
rand = { version = "0.8.5", optional = true }
3434
rand_seeder = "0.3.0"
3535
ed25519-dalek = "2.1.0"
3636

3737
[dependencies.multiversx-chain-core]
38-
version = "=0.13.0"
38+
version = "=0.13.1"
3939
path = "../core"
4040

4141
[dependencies.multiversx-chain-vm-executor]

contracts/benchmarks/large-storage/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ publish = false
99
path = "src/large_storage.rs"
1010

1111
[dependencies.multiversx-sc]
12-
version = "0.56.0"
12+
version = "0.56.1"
1313
path = "../../../framework/base"
1414

1515
[dev-dependencies.multiversx-sc-scenario]
16-
version = "0.56.0"
16+
version = "0.56.1"
1717
path = "../../../framework/scenario"

contracts/benchmarks/large-storage/meta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ publish = false
88
path = ".."
99

1010
[dependencies.multiversx-sc-meta-lib]
11-
version = "0.56.0"
11+
version = "0.56.1"
1212
path = "../../../../framework/meta-lib"
1313
default-features = false

contracts/benchmarks/large-storage/wasm/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/benchmarks/large-storage/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ panic = "abort"
2828
path = ".."
2929

3030
[dependencies.multiversx-sc-wasm-adapter]
31-
version = "0.56.0"
31+
version = "0.56.1"
3232
path = "../../../../framework/wasm-adapter"
3333

3434
[workspace]

contracts/benchmarks/mappers/benchmark-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ publish = false
99
path = "src/lib.rs"
1010

1111
[dependencies.multiversx-sc]
12-
version = "0.56.0"
12+
version = "0.56.1"
1313
path = "../../../../framework/base"
1414

1515
[dev-dependencies.multiversx-sc-scenario]
16-
version = "0.56.0"
16+
version = "0.56.1"
1717
path = "../../../../framework/scenario"

0 commit comments

Comments
 (0)