diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08bb2d1..84c8be7 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.78.0 + RUST_VERSION: 1.79.0 #RUST_VERSION strategy: matrix: diff --git a/1.78.0/alpine3.19/Dockerfile b/1.79.0/alpine3.19/Dockerfile similarity index 97% rename from 1.78.0/alpine3.19/Dockerfile rename to 1.79.0/alpine3.19/Dockerfile index 47e6f88..3a58449 100644 --- a/1.78.0/alpine3.19/Dockerfile +++ b/1.79.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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/1.78.0/alpine3.20/Dockerfile b/1.79.0/alpine3.20/Dockerfile similarity index 97% rename from 1.78.0/alpine3.20/Dockerfile rename to 1.79.0/alpine3.20/Dockerfile index 7087296..1fe8f5e 100644 --- a/1.78.0/alpine3.20/Dockerfile +++ b/1.79.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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ apkArch="$(apk --print-arch)"; \ diff --git a/1.78.0/bookworm/Dockerfile b/1.79.0/bookworm/Dockerfile similarity index 98% rename from 1.78.0/bookworm/Dockerfile rename to 1.79.0/bookworm/Dockerfile index 8ca170a..f774cce 100644 --- a/1.78.0/bookworm/Dockerfile +++ b/1.79.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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/1.78.0/bookworm/slim/Dockerfile b/1.79.0/bookworm/slim/Dockerfile similarity index 98% rename from 1.78.0/bookworm/slim/Dockerfile rename to 1.79.0/bookworm/slim/Dockerfile index 648b4ed..19b6335 100644 --- a/1.78.0/bookworm/slim/Dockerfile +++ b/1.79.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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ apt-get update; \ diff --git a/1.78.0/bullseye/Dockerfile b/1.79.0/bullseye/Dockerfile similarity index 98% rename from 1.78.0/bullseye/Dockerfile rename to 1.79.0/bullseye/Dockerfile index 4cdd217..f7383b7 100644 --- a/1.78.0/bullseye/Dockerfile +++ b/1.79.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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/1.78.0/bullseye/slim/Dockerfile b/1.79.0/bullseye/slim/Dockerfile similarity index 98% rename from 1.78.0/bullseye/slim/Dockerfile rename to 1.79.0/bullseye/slim/Dockerfile index ea07789..212d0b2 100644 --- a/1.78.0/bullseye/slim/Dockerfile +++ b/1.79.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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ apt-get update; \ diff --git a/1.78.0/buster/Dockerfile b/1.79.0/buster/Dockerfile similarity index 98% rename from 1.78.0/buster/Dockerfile rename to 1.79.0/buster/Dockerfile index ca38a21..51af095 100644 --- a/1.78.0/buster/Dockerfile +++ b/1.79.0/buster/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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ dpkgArch="$(dpkg --print-architecture)"; \ diff --git a/1.78.0/buster/slim/Dockerfile b/1.79.0/buster/slim/Dockerfile similarity index 98% rename from 1.78.0/buster/slim/Dockerfile rename to 1.79.0/buster/slim/Dockerfile index 315c76e..43424aa 100644 --- a/1.78.0/buster/slim/Dockerfile +++ b/1.79.0/buster/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.78.0 + RUST_VERSION=1.79.0 RUN set -eux; \ apt-get update; \ diff --git a/x.py b/x.py index 398f58d..d4b8ccf 100755 --- a/x.py +++ b/x.py @@ -6,7 +6,7 @@ import subprocess import sys -stable_rust_version = "1.78.0" +stable_rust_version = "1.79.0" supported_rust_versions = [stable_rust_version, "nightly"] rustup_version = "1.27.0"