Skip to content

Commit

Permalink
Merge pull request #427 from multiversx/rust-stable
Browse files Browse the repository at this point in the history
By default, install rust "stable"
  • Loading branch information
andreibancioiu authored May 27, 2024
2 parents aa8fb73 + d1471ac commit 2c8a63f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion multiversx_sdk_cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def get_defaults() -> Dict[str, Any]:
"dependencies.vmtools.urlTemplate.linux": "https://github.com/multiversx/mx-chain-vm-go/archive/{TAG}.tar.gz",
"dependencies.vmtools.urlTemplate.osx": "https://github.com/multiversx/mx-chain-vm-go/archive/{TAG}.tar.gz",
"dependencies.vmtools.urlTemplate.windows": "https://github.com/multiversx/mx-chain-vm-go/archive/{TAG}.tar.gz",
"dependencies.rust.tag": "nightly-2023-12-11",
"dependencies.rust.tag": "stable",
"dependencies.golang.resolution": "SDK",
"dependencies.golang.tag": "go1.20.7",
"dependencies.golang.urlTemplate.linux": "https://golang.org/dl/{TAG}.linux-amd64.tar.gz",
Expand Down
2 changes: 1 addition & 1 deletion multiversx_sdk_cli/dependencies/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def _install_rust(self, tag: str) -> None:
if tag:
toolchain = tag
else:
toolchain = "nightly"
toolchain = "stable"

args = [str(installer_path), "--verbose", "--default-toolchain", toolchain, "--profile",
"minimal", "--target", "wasm32-unknown-unknown", "-y"]
Expand Down
2 changes: 1 addition & 1 deletion multiversx_sdk_cli/tests/shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ PROXY="${PROXY:-http://localhost:7950}"
CHAIN_ID="${CHAIN_ID:-localnet}"
TestUser=./testdata/testUser.pem
TestUser2=./testdata/testUser2.pem
RUST_VERSION="nightly-2023-05-26"
RUST_VERSION="stable"

cleanSandbox() {
rm -rf ${SANDBOX}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "multiversx-sdk-cli"
version = "9.5.6"
version = "9.6.0"
authors = [
{ name="MultiversX" },
]
Expand Down

0 comments on commit 2c8a63f

Please sign in to comment.