Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Rust 1.79.0. #217

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.78.0-alpine3.19 \
rust:1.79.0-alpine3.20 \
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 @@ -48,7 +48,7 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.78.0-alpine3.19 \
rust:1.79.0-alpine3.20 \
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 @@ -64,7 +64,7 @@ jobs:
docker run --rm \
-v $PWD:/code \
-w /code \
rust:1.78.0-alpine3.19 \
rust:1.79.0-alpine3.20 \
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 rust-toolchain
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# N.B.: Update .github and .circleci yaml to use a matching image, if available.
# Although a version match is not required (cargo downloads and installs the
# toolchain described here if not present), it does speed up CI builds.
channel = "1.78.0"
channel = "1.79.0"
components = [
"cargo",
"clippy",
Expand Down