From 3abb4890185e310a39af343766fcb4d3bd69b31f Mon Sep 17 00:00:00 2001 From: icpp Date: Mon, 9 Feb 2026 08:01:03 -0500 Subject: [PATCH 1/2] Update wasi2ic installation command and bump Rust version to 1.87.0 --- src/icpp/commands_install_rust.py | 7 +++++++ src/icpp/version_rust.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/icpp/commands_install_rust.py b/src/icpp/commands_install_rust.py index 0d39040..dbf3169 100644 --- a/src/icpp/commands_install_rust.py +++ b/src/icpp/commands_install_rust.py @@ -63,6 +63,13 @@ def install_wasi2ic(nstep: int, num_steps: int) -> None: ) cmd = f"git switch --detach {__version_wasi2ic__} " + run_shell_cmd_with_log( + LOG_FILE, + "a", + cmd, + cwd=config_default.RUST_COMPILER_ROOT / "wasi2ic", + timeout_seconds=TIMEOUT_SECONDS, + ) cmd = ( f"{config_default.CARGO} install " diff --git a/src/icpp/version_rust.py b/src/icpp/version_rust.py index be33aad..6397ffc 100644 --- a/src/icpp/version_rust.py +++ b/src/icpp/version_rust.py @@ -6,4 +6,4 @@ """ -__version__ = "1.86.0" +__version__ = "1.87.0" From 4d69eb4e77816ca20584271b5db046b33b7b6fee Mon Sep 17 00:00:00 2001 From: icpp Date: Mon, 9 Feb 2026 08:18:36 -0500 Subject: [PATCH 2/2] Bump Rust version to 1.93.0 in version_rust.py --- src/icpp/version_rust.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/icpp/version_rust.py b/src/icpp/version_rust.py index 6397ffc..7ef1c39 100644 --- a/src/icpp/version_rust.py +++ b/src/icpp/version_rust.py @@ -6,4 +6,4 @@ """ -__version__ = "1.87.0" +__version__ = "1.93.0"