diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7308fcf..b9360db 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.1 + RUST_VERSION: 1.81.0 #RUST_VERSION strategy: matrix: diff --git a/1.80.1/alpine3.19/Dockerfile b/1.81.0/alpine3.19/Dockerfile similarity index 97% rename from 1.80.1/alpine3.19/Dockerfile rename to 1.81.0/alpine3.19/Dockerfile index 212d6bc..40d5e1d 100644 --- a/1.80.1/alpine3.19/Dockerfile +++ b/1.81.0/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.1 + RUST_VERSION=1.81.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/1.80.1/alpine3.20/Dockerfile b/1.81.0/alpine3.20/Dockerfile similarity index 97% rename from 1.80.1/alpine3.20/Dockerfile rename to 1.81.0/alpine3.20/Dockerfile index ebcbaef..22e6f7c 100644 --- a/1.80.1/alpine3.20/Dockerfile +++ b/1.81.0/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.1 + RUST_VERSION=1.81.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/1.80.1/bookworm/Dockerfile b/1.81.0/bookworm/Dockerfile similarity index 98% rename from 1.80.1/bookworm/Dockerfile rename to 1.81.0/bookworm/Dockerfile index aad4fa9..f3bcb7d 100644 --- a/1.80.1/bookworm/Dockerfile +++ b/1.81.0/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.1 + RUST_VERSION=1.81.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/1.80.1/bookworm/slim/Dockerfile b/1.81.0/bookworm/slim/Dockerfile similarity index 98% rename from 1.80.1/bookworm/slim/Dockerfile rename to 1.81.0/bookworm/slim/Dockerfile index 0142926..6ac9ae5 100644 --- a/1.80.1/bookworm/slim/Dockerfile +++ b/1.81.0/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.1 + RUST_VERSION=1.81.0 RUN set -eux; \ apt-get update; \ diff --git a/1.80.1/bullseye/Dockerfile b/1.81.0/bullseye/Dockerfile similarity index 98% rename from 1.80.1/bullseye/Dockerfile rename to 1.81.0/bullseye/Dockerfile index d8b6804..e89b0e7 100644 --- a/1.80.1/bullseye/Dockerfile +++ b/1.81.0/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.1 + RUST_VERSION=1.81.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/1.80.1/bullseye/slim/Dockerfile b/1.81.0/bullseye/slim/Dockerfile similarity index 98% rename from 1.80.1/bullseye/slim/Dockerfile rename to 1.81.0/bullseye/slim/Dockerfile index 9e8715e..dd5917a 100644 --- a/1.80.1/bullseye/slim/Dockerfile +++ b/1.81.0/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.1 + RUST_VERSION=1.81.0 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index 0541a32..e9ebb8d 100755 --- a/x.py +++ b/x.py @@ -6,7 +6,7 @@ import subprocess import sys -stable_rust_version = "1.80.1" +stable_rust_version = "1.81.0" supported_rust_versions = [stable_rust_version, "nightly"] rustup_version = "1.27.1"