Skip to content

Commit d9207de

Browse files
mohammadfawazMohammad Fawaz
andauthored
Update to 4.0.0 (#29275)
Co-authored-by: Mohammad Fawaz <mohammadfawaz@gmail.com>
1 parent f4105f5 commit d9207de

File tree

66 files changed

+494
-421
lines changed

Some content is hidden

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

66 files changed

+494
-421
lines changed

.circleci/config.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2.1
66
# - Incremental builds should be disabled in CI, since they don't provide much benefit.
77
# - Enabling `--only_testnet` feature flag to reduce the amount of time spent building leo-lang, since it's not needed for the test suite.
88

9-
# Rust Version: 1.93.1
9+
# Rust Version: 1.94.1
1010
# Ensure that this matches the `rust-version` in `Cargo.toml`.
1111
# If this is changed, propogate the changes to all places in this file, including the `install-rust` command.
1212

@@ -26,7 +26,7 @@ executors:
2626

2727
linux-executor:
2828
docker:
29-
- image: "cimg/rust:1.93.1" # Ensure that this matches the `rust-version` in `Cargo.toml`.
29+
- image: "cimg/rust:1.94.1" # Ensure that this matches the `rust-version` in `Cargo.toml`.
3030
resource_class: 2xlarge
3131

3232
commands:
@@ -37,12 +37,12 @@ commands:
3737
name: Install Rust
3838
command: |
3939
# If Rust is not installed on the machine, install it
40-
# (temporarily install it regardless, as we want 1.93.1, not 1.85.0)
40+
# (temporarily install it regardless, as we want 1.94.1, not 1.85.0)
4141
# if ! command -v rustc &> /dev/null; then
4242
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
4343
source "$HOME/.cargo/env"
44-
rustup install 1.93.1
45-
rustup override set 1.93.1
44+
rustup install 1.94.1
45+
rustup override set 1.94.1
4646
cargo --version --verbose
4747
rustc --version
4848
# fi
@@ -64,8 +64,8 @@ commands:
6464
Invoke-WebRequest -Uri "https://win.rustup.rs/" -OutFile "C:\\rustup-init.exe"
6565
Start-Process "C:\\rustup-init.exe" -ArgumentList '-y' -Wait
6666
$Env:Path += ";$Env:USERPROFILE\.cargo\bin"
67-
rustup install 1.93.1
68-
rustup default 1.93.1
67+
rustup install 1.94.1
68+
rustup default 1.94.1
6969
cargo --version --verbose
7070
rustc --version | Out-File -FilePath "rust-version"
7171
if (!(Test-Path "Cargo.lock" -PathType Leaf)) {
@@ -251,7 +251,7 @@ jobs:
251251

252252
check-style-clippy-docs:
253253
docker:
254-
- image: "cimg/rust:1.93.1-node" # Rust image with Node.js for tree-sitter CLI checks.
254+
- image: "cimg/rust:1.94.1-node" # Rust image with Node.js for tree-sitter CLI checks.
255255
resource_class: large
256256
steps:
257257
- checkout
@@ -345,7 +345,7 @@ jobs:
345345

346346
leo-new:
347347
docker:
348-
- image: cimg/rust:1.93.1
348+
- image: cimg/rust:1.94.1
349349
resource_class: xlarge
350350
steps:
351351
- attach_workspace:
@@ -358,7 +358,7 @@ jobs:
358358
359359
leo-clean:
360360
docker:
361-
- image: cimg/rust:1.93.1
361+
- image: cimg/rust:1.94.1
362362
resource_class: xlarge
363363
steps:
364364
- attach_workspace:
@@ -371,7 +371,7 @@ jobs:
371371
372372
test-examples:
373373
docker:
374-
- image: cimg/rust:1.93.1
374+
- image: cimg/rust:1.94.1
375375
resource_class: xlarge
376376
steps:
377377
- attach_workspace:

0 commit comments

Comments
 (0)