From a6488232546c088ca9153d7a4154a3e5964ec576 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Thu, 9 Jan 2025 08:52:19 -0700 Subject: [PATCH] chore: Bump to rust version 1.84.0 --- .github/workflows/ci.yml | 2 +- stable/alpine3.20/Dockerfile | 2 +- stable/alpine3.21/Dockerfile | 2 +- stable/bookworm/Dockerfile | 2 +- stable/bookworm/slim/Dockerfile | 2 +- stable/bullseye/Dockerfile | 2 +- stable/bullseye/slim/Dockerfile | 2 +- x.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d29194e..1799d28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest env: #RUST_VERSION - RUST_VERSION: 1.83.0 + RUST_VERSION: 1.84.0 #RUST_VERSION strategy: matrix: diff --git a/stable/alpine3.20/Dockerfile b/stable/alpine3.20/Dockerfile index 33203b8..6e914fe 100644 --- a/stable/alpine3.20/Dockerfile +++ b/stable/alpine3.20/Dockerfile @@ -9,7 +9,7 @@ RUN apk add --no-cache \ ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.83.0 + RUST_VERSION=1.84.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/alpine3.21/Dockerfile b/stable/alpine3.21/Dockerfile index 1486f96..6f3bf26 100644 --- a/stable/alpine3.21/Dockerfile +++ b/stable/alpine3.21/Dockerfile @@ -9,7 +9,7 @@ RUN apk add --no-cache \ ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.83.0 + RUST_VERSION=1.84.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/stable/bookworm/Dockerfile b/stable/bookworm/Dockerfile index 584ae6c..a0333da 100644 --- a/stable/bookworm/Dockerfile +++ b/stable/bookworm/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.83.0 + RUST_VERSION=1.84.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bookworm/slim/Dockerfile b/stable/bookworm/slim/Dockerfile index c4ff241..676b703 100644 --- a/stable/bookworm/slim/Dockerfile +++ b/stable/bookworm/slim/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.83.0 + RUST_VERSION=1.84.0 RUN set -eux; \ apt-get update; \ diff --git a/stable/bullseye/Dockerfile b/stable/bullseye/Dockerfile index 14b038a..2eec784 100644 --- a/stable/bullseye/Dockerfile +++ b/stable/bullseye/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.83.0 + RUST_VERSION=1.84.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/stable/bullseye/slim/Dockerfile b/stable/bullseye/slim/Dockerfile index 0f4727f..9ace3a1 100644 --- a/stable/bullseye/slim/Dockerfile +++ b/stable/bullseye/slim/Dockerfile @@ -5,7 +5,7 @@ LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust ENV RUSTUP_HOME=/usr/local/rustup \ CARGO_HOME=/usr/local/cargo \ PATH=/usr/local/cargo/bin:$PATH \ - RUST_VERSION=1.83.0 + RUST_VERSION=1.84.0 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index 60a0024..d33677e 100755 --- a/x.py +++ b/x.py @@ -9,7 +9,7 @@ rustup_version = "1.27.1" Channel = namedtuple("Channel", ["name", "rust_version"]) -stable = Channel("stable", "1.83.0") +stable = Channel("stable", "1.84.0") nightly = Channel("nightly", "nightly") supported_channels = [ stable,