Skip to content

Commit 96860b8

Browse files
committed
chore: bump byper to 0.4.1
1 parent f9c5a23 commit 96860b8

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/nextest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
python-version: 3.11
7474
- name: Install Vyper
75-
run: pip install vyper==0.4.0
75+
run: pip install vyper==0.4.1
7676

7777
- name: Forge RPC cache
7878
uses: actions/cache@v3

crates/forge/tests/cli/compiler.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Solidity:
156156
- 0.8.27
157157
158158
Vyper:
159-
- 0.4.0
159+
- 0.4.1
160160
161161
162162
"#]]);
@@ -174,7 +174,7 @@ forgetest!(can_list_resolved_multiple_compiler_versions_skipped, |prj, cmd| {
174174
r#"
175175
Vyper:
176176
177-
0.4.0:
177+
0.4.1:
178178
├── src/Counter.vy
179179
└── src/ICounter.vyi
180180
@@ -206,7 +206,7 @@ forgetest!(can_list_resolved_multiple_compiler_versions_skipped_json, |prj, cmd|
206206
],
207207
"Vyper": [
208208
{
209-
"version": "0.4.0",
209+
"version": "0.4.1",
210210
"paths": [
211211
"src/Counter.vy",
212212
"src/ICounter.vyi"
@@ -242,7 +242,7 @@ Solidity:
242242
243243
Vyper:
244244
245-
0.4.0 (<= cancun):
245+
0.4.1 (<= cancun):
246246
├── src/Counter.vy
247247
└── src/ICounter.vyi
248248
@@ -287,7 +287,7 @@ forgetest!(can_list_resolved_multiple_compiler_versions_verbose_json, |prj, cmd|
287287
],
288288
"Vyper": [
289289
{
290-
"version": "0.4.0",
290+
"version": "0.4.1",
291291
"evm_version": "[..]",
292292
"paths": [
293293
"src/Counter.vy",

crates/forge/tests/cli/ext_integration.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ fn solady() {
6969
#[cfg_attr(windows, ignore = "Windows cannot find installed programs")]
7070
#[cfg(not(feature = "isolate-by-default"))]
7171
fn snekmate() {
72-
ExtTester::new("pcaversaccio", "snekmate", "df226f4a45e86c8f8c3ff1f9fa3443d260002050")
73-
.args(["--nmc", "ERC4626VaultTest"])
72+
ExtTester::new("pcaversaccio", "snekmate", "03ae49353db83b29fe526e6796054e04bfe67d3f")
7473
.install_command(&["pnpm", "install", "--prefer-offline"])
7574
// Try npm if pnpm fails / is not installed.
7675
.install_command(&["npm", "install", "--prefer-offline"])

crates/forge/tests/it/test_helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ pub fn get_vyper() -> Vyper {
268268
install it manually and add it to $PATH"
269269
),
270270
};
271-
let url = format!("https://github.com/vyperlang/vyper/releases/download/v0.4.0/vyper.0.4.0+commit.e9db8d9f.{suffix}");
271+
let url = format!("https://github.com/vyperlang/vyper/releases/download/v0.4.1/vyper.0.4.1+commit.8a93dd27.{suffix}");
272272

273273
let res = reqwest::Client::builder().build().unwrap().get(url).send().await.unwrap();
274274

0 commit comments

Comments
 (0)