Skip to content

Commit 0d89510

Browse files
authored
build(ci): update cargo-stylus to v0.6.0 (#683)
1 parent fb10268 commit 0d89510

File tree

8 files changed

+13
-14
lines changed

8 files changed

+13
-14
lines changed

.github/workflows/check-abi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
rustflags: ""
2525

2626
- name: Install cargo-stylus
27-
run: cargo install cargo-stylus@0.5.12
27+
run: cargo install cargo-stylus@0.6.0
2828

2929
- name: Run export-abi
3030
run: ./scripts/check-abi.sh

.github/workflows/check-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
rustflags: ""
2626

2727
- name: Install cargo-stylus
28-
run: cargo install cargo-stylus@0.5.12
28+
run: cargo install cargo-stylus@0.6.0
2929

3030
- name: Run wasm check
3131
run: ./scripts/check-wasm.sh

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
rustflags: ""
3333

3434
- name: Install cargo-stylus
35-
run: cargo install cargo-stylus@0.5.12
35+
run: cargo install cargo-stylus@0.6.0
3636

3737
- name: Setup nitro node
3838
run: ./scripts/nitro-testnode.sh -d -i

.github/workflows/gas-bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
rustflags: ""
2727

2828
- name: Install cargo-stylus
29-
run: cargo install cargo-stylus@0.5.12
29+
run: cargo install cargo-stylus@0.6.0
3030

3131
- name: Install wasm-opt
3232
run: cargo install [email protected]

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
- Bump `cargo-stylus` to `v0.6.0`. #683
15+
1416
### Changed (Breaking)
1517

1618
## [v0.2.0-rc.0] - 2025-05-22

Cargo.lock

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

lib/e2e/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "e2e"
33
description = "End-to-end Testing for Stylus"
4-
version = "0.3.0"
4+
version = "0.3.1"
55
categories = ["development-tools::testing", "cryptography::cryptocurrencies"]
66
keywords = ["arbitrum", "ethereum", "stylus", "integration-testing", "tests"]
77
authors.workspace = true

lib/e2e/src/deploy.rs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,11 @@ impl Deployer {
157157
.expect("deployer address should be set");
158158

159159
command
160-
.args(["--experimental-deployer-address", &deployer_address])
161-
.args(["--experimental-constructor-signature", &ctor.signature])
160+
.args(["--deployer-address", &deployer_address])
161+
.args(["--constructor-signature", &ctor.signature])
162162
.args(
163-
[
164-
&["--experimental-constructor-args".to_string()],
165-
ctor.args.as_slice(),
166-
]
167-
.concat(),
163+
[&["--constructor-args".to_string()], ctor.args.as_slice()]
164+
.concat(),
168165
);
169166
}
170167

0 commit comments

Comments
 (0)