Skip to content

Commit ab1e968

Browse files
authored
Upgrade to Rust 1.74.1. (a-scie#177)
The release announcement is here: https://blog.rust-lang.org/2023/12/07/Rust-1.74.1.html
1 parent 4a2842a commit ab1e968

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
docker run --rm \
5050
-v $PWD:/code \
5151
-w /code \
52-
rust:1.74.0-alpine3.18 \
52+
rust:1.74.1-alpine3.18 \
5353
sh -c 'apk add musl-dev && cargo run -p package -- dist'
5454
- persist_to_workspace:
5555
root: dist

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
docker run --rm \
5050
-v $PWD:/code \
5151
-w /code \
52-
rust:1.74.0-alpine3.18 \
52+
rust:1.74.1-alpine3.18 \
5353
sh -c 'apk add musl-dev && cargo run -p package'
5454
- name: Integration Tests
5555
run: examples/run.sh --no-package

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
docker run --rm \
6363
-v $PWD:/code \
6464
-w /code \
65-
rust:1.74.0-alpine3.18 \
65+
rust:1.74.1-alpine3.18 \
6666
sh -c 'apk add musl-dev && cargo run -p package -- dist'
6767
- name: Prepare Changelog
6868
id: prepare-changelog

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# N.B.: Update .github and .circleci yaml to use a matching image, if available.
33
# Although a version match is not required (cargo downloads and installs the
44
# toolchain described here if not present), it does speed up CI builds.
5-
channel = "1.74.0"
5+
channel = "1.74.1"
66
components = [
77
"cargo",
88
"clippy",

0 commit comments

Comments
 (0)