Skip to content

Commit

Permalink
Upgrade Rust to 1.72.0. (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Aug 26, 2023
1 parent 1403e1f commit 3c204b9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.71.1-alpine3.18 \
rust:1.72.0-alpine3.18 \
sh -c 'apk add musl-dev && cargo run -p package -- dist'
- persist_to_workspace:
root: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.71.1-alpine3.18 \
rust:1.72.0-alpine3.18 \
sh -c 'apk add musl-dev && cargo run -p package'
- name: Integration Tests
run: examples/run.sh --no-package
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.71.1-alpine3.18 \
rust:1.72.0-alpine3.18 \
sh -c 'apk add musl-dev && cargo run -p package -- dist'
- name: Prepare Changelog
id: prepare-changelog
Expand Down
2 changes: 1 addition & 1 deletion package/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ fn main() -> ExitResult {
// N.B.: This just suppresses a warning about adding this bin dir to your PATH.
.env(
"PATH",
vec![output_bin_dir.to_str().unwrap(), env!("PATH")].join(PATHSEP),
[output_bin_dir.to_str().unwrap(), env!("PATH")].join(PATHSEP),
),
)?;

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[toolchain]
# N.B.: Update .github and .circleci yaml to use a matching image.
channel = "1.71.1"
channel = "1.72.0"
components = [
"cargo",
"clippy",
Expand Down

0 comments on commit 3c204b9

Please sign in to comment.