From 0a45c7aa91e66a77f8531f10bfc03a6effc7268b Mon Sep 17 00:00:00 2001 From: John Sirois Date: Thu, 8 Feb 2024 02:42:52 -0800 Subject: [PATCH] Upgrade to Rust 1.76.0. The release announcement is here: https://blog.rust-lang.org/2024/02/08/Rust-1.76.0.html --- .circleci/config.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- rust-toolchain | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9a53c31..9454256 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,7 +47,7 @@ jobs: docker run --rm \ -v $PWD:/code \ -w /code \ - rust:1.75.0-alpine3.19 \ + rust:1.76.0-alpine3.19 \ sh -c 'apk add musl-dev && cargo run -p package -- dist' - persist_to_workspace: root: dist diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40941e9..5cd3e5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: docker run --rm \ -v $PWD:/code \ -w /code \ - rust:1.75.0-alpine3.19 \ + rust:1.76.0-alpine3.19 \ sh -c 'apk add musl-dev && cargo run -p package' - name: Integration Tests run: examples/run.sh --no-package diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0a34963..348728d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,7 +62,7 @@ jobs: docker run --rm \ -v $PWD:/code \ -w /code \ - rust:1.75.0-alpine3.19 \ + rust:1.76.0-alpine3.19 \ sh -c 'apk add musl-dev && cargo run -p package -- dist' - name: Prepare Changelog id: prepare-changelog diff --git a/rust-toolchain b/rust-toolchain index 39f3746..5751e86 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -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.75.0" +channel = "1.76.0" components = [ "cargo", "clippy",