From 3b6565cd3b0b7c9cb084f07461cb959f7cf77c16 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Thu, 8 Aug 2024 08:23:42 -0600 Subject: [PATCH] chore: Bump to rust version 1.80.1 --- .github/workflows/ci.yml | 2 +- {1.80.0 => 1.80.1}/alpine3.19/Dockerfile | 2 +- {1.80.0 => 1.80.1}/alpine3.20/Dockerfile | 2 +- {1.80.0 => 1.80.1}/bookworm/Dockerfile | 2 +- {1.80.0 => 1.80.1}/bookworm/slim/Dockerfile | 2 +- {1.80.0 => 1.80.1}/bullseye/Dockerfile | 2 +- {1.80.0 => 1.80.1}/bullseye/slim/Dockerfile | 2 +- x.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) rename {1.80.0 => 1.80.1}/alpine3.19/Dockerfile (97%) rename {1.80.0 => 1.80.1}/alpine3.20/Dockerfile (97%) rename {1.80.0 => 1.80.1}/bookworm/Dockerfile (98%) rename {1.80.0 => 1.80.1}/bookworm/slim/Dockerfile (98%) rename {1.80.0 => 1.80.1}/bullseye/Dockerfile (98%) rename {1.80.0 => 1.80.1}/bullseye/slim/Dockerfile (98%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 600e390..7308fcf 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.80.0 + RUST_VERSION: 1.80.1 #RUST_VERSION strategy: matrix: diff --git a/1.80.0/alpine3.19/Dockerfile b/1.80.1/alpine3.19/Dockerfile similarity index 97% rename from 1.80.0/alpine3.19/Dockerfile rename to 1.80.1/alpine3.19/Dockerfile index 61d3772..212d6bc 100644 --- a/1.80.0/alpine3.19/Dockerfile +++ b/1.80.1/alpine3.19/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.80.0 + RUST_VERSION=1.80.1 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/1.80.0/alpine3.20/Dockerfile b/1.80.1/alpine3.20/Dockerfile similarity index 97% rename from 1.80.0/alpine3.20/Dockerfile rename to 1.80.1/alpine3.20/Dockerfile index 51285e3..ebcbaef 100644 --- a/1.80.0/alpine3.20/Dockerfile +++ b/1.80.1/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.80.0 + RUST_VERSION=1.80.1 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/1.80.0/bookworm/Dockerfile b/1.80.1/bookworm/Dockerfile similarity index 98% rename from 1.80.0/bookworm/Dockerfile rename to 1.80.1/bookworm/Dockerfile index 0b14a3e..aad4fa9 100644 --- a/1.80.0/bookworm/Dockerfile +++ b/1.80.1/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.80.0 + RUST_VERSION=1.80.1 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/1.80.0/bookworm/slim/Dockerfile b/1.80.1/bookworm/slim/Dockerfile similarity index 98% rename from 1.80.0/bookworm/slim/Dockerfile rename to 1.80.1/bookworm/slim/Dockerfile index 788e11c..0142926 100644 --- a/1.80.0/bookworm/slim/Dockerfile +++ b/1.80.1/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.80.0 + RUST_VERSION=1.80.1 RUN set -eux; \ apt-get update; \ diff --git a/1.80.0/bullseye/Dockerfile b/1.80.1/bullseye/Dockerfile similarity index 98% rename from 1.80.0/bullseye/Dockerfile rename to 1.80.1/bullseye/Dockerfile index 54b9f4e..d8b6804 100644 --- a/1.80.0/bullseye/Dockerfile +++ b/1.80.1/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.80.0 + RUST_VERSION=1.80.1 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/1.80.0/bullseye/slim/Dockerfile b/1.80.1/bullseye/slim/Dockerfile similarity index 98% rename from 1.80.0/bullseye/slim/Dockerfile rename to 1.80.1/bullseye/slim/Dockerfile index d30c94e..9e8715e 100644 --- a/1.80.0/bullseye/slim/Dockerfile +++ b/1.80.1/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.80.0 + RUST_VERSION=1.80.1 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index 94d2bc9..0541a32 100755 --- a/x.py +++ b/x.py @@ -6,7 +6,7 @@ import subprocess import sys -stable_rust_version = "1.80.0" +stable_rust_version = "1.80.1" supported_rust_versions = [stable_rust_version, "nightly"] rustup_version = "1.27.1"