Skip to content

Commit

Permalink
chore: Bump to rust version 1.82.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Muscraft committed Oct 17, 2024
1 parent c606c24 commit 1700955
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
env:
#RUST_VERSION
RUST_VERSION: 1.81.0
RUST_VERSION: 1.82.0
#RUST_VERSION
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion stable/alpine3.19/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.81.0
RUST_VERSION=1.82.0

RUN set -eux; \
apkArch="$(apk --print-arch)"; \
Expand Down
2 changes: 1 addition & 1 deletion stable/alpine3.20/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.81.0
RUST_VERSION=1.82.0

RUN set -eux; \
apkArch="$(apk --print-arch)"; \
Expand Down
2 changes: 1 addition & 1 deletion stable/bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.81.0
RUST_VERSION=1.82.0

RUN set -eux; \
dpkgArch="$(dpkg --print-architecture)"; \
Expand Down
2 changes: 1 addition & 1 deletion stable/bookworm/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.81.0
RUST_VERSION=1.82.0

RUN set -eux; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion stable/bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.81.0
RUST_VERSION=1.82.0

RUN set -eux; \
dpkgArch="$(dpkg --print-architecture)"; \
Expand Down
2 changes: 1 addition & 1 deletion stable/bullseye/slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.81.0
RUST_VERSION=1.82.0

RUN set -eux; \
apt-get update; \
Expand Down
2 changes: 1 addition & 1 deletion x.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
rustup_version = "1.27.1"

Channel = namedtuple("Channel", ["name", "rust_version"])
stable = Channel("stable", "1.81.0")
stable = Channel("stable", "1.82.0")
nightly = Channel("nightly", "nightly")
supported_channels = [
stable,
Expand Down

0 comments on commit 1700955

Please sign in to comment.