Skip to content

Commit 1b16b54

Browse files
authored
Merge pull request #192 from jsirois/rust-1.77.1
chore: Bump to rust version 1.77.1
2 parents 8518003 + 714d8bd commit 1b16b54

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
env:
2020
#RUST_VERSION
21-
RUST_VERSION: 1.77.0
21+
RUST_VERSION: 1.77.1
2222
#RUST_VERSION
2323
strategy:
2424
matrix:

1.77.0/alpine3.18/Dockerfile renamed to 1.77.1/alpine3.18/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apk add --no-cache \
77
ENV RUSTUP_HOME=/usr/local/rustup \
88
CARGO_HOME=/usr/local/cargo \
99
PATH=/usr/local/cargo/bin:$PATH \
10-
RUST_VERSION=1.77.0
10+
RUST_VERSION=1.77.1
1111

1212
RUN set -eux; \
1313
apkArch="$(apk --print-arch)"; \

1.77.0/alpine3.19/Dockerfile renamed to 1.77.1/alpine3.19/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apk add --no-cache \
77
ENV RUSTUP_HOME=/usr/local/rustup \
88
CARGO_HOME=/usr/local/cargo \
99
PATH=/usr/local/cargo/bin:$PATH \
10-
RUST_VERSION=1.77.0
10+
RUST_VERSION=1.77.1
1111

1212
RUN set -eux; \
1313
apkArch="$(apk --print-arch)"; \

1.77.0/bookworm/Dockerfile renamed to 1.77.1/bookworm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM buildpack-deps:bookworm
33
ENV RUSTUP_HOME=/usr/local/rustup \
44
CARGO_HOME=/usr/local/cargo \
55
PATH=/usr/local/cargo/bin:$PATH \
6-
RUST_VERSION=1.77.0
6+
RUST_VERSION=1.77.1
77

88
RUN set -eux; \
99
dpkgArch="$(dpkg --print-architecture)"; \

1.77.0/bookworm/slim/Dockerfile renamed to 1.77.1/bookworm/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:bookworm-slim
33
ENV RUSTUP_HOME=/usr/local/rustup \
44
CARGO_HOME=/usr/local/cargo \
55
PATH=/usr/local/cargo/bin:$PATH \
6-
RUST_VERSION=1.77.0
6+
RUST_VERSION=1.77.1
77

88
RUN set -eux; \
99
apt-get update; \

1.77.0/bullseye/Dockerfile renamed to 1.77.1/bullseye/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM buildpack-deps:bullseye
33
ENV RUSTUP_HOME=/usr/local/rustup \
44
CARGO_HOME=/usr/local/cargo \
55
PATH=/usr/local/cargo/bin:$PATH \
6-
RUST_VERSION=1.77.0
6+
RUST_VERSION=1.77.1
77

88
RUN set -eux; \
99
dpkgArch="$(dpkg --print-architecture)"; \

1.77.0/bullseye/slim/Dockerfile renamed to 1.77.1/bullseye/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:bullseye-slim
33
ENV RUSTUP_HOME=/usr/local/rustup \
44
CARGO_HOME=/usr/local/cargo \
55
PATH=/usr/local/cargo/bin:$PATH \
6-
RUST_VERSION=1.77.0
6+
RUST_VERSION=1.77.1
77

88
RUN set -eux; \
99
apt-get update; \

1.77.0/buster/Dockerfile renamed to 1.77.1/buster/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM buildpack-deps:buster
33
ENV RUSTUP_HOME=/usr/local/rustup \
44
CARGO_HOME=/usr/local/cargo \
55
PATH=/usr/local/cargo/bin:$PATH \
6-
RUST_VERSION=1.77.0
6+
RUST_VERSION=1.77.1
77

88
RUN set -eux; \
99
dpkgArch="$(dpkg --print-architecture)"; \

1.77.0/buster/slim/Dockerfile renamed to 1.77.1/buster/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:buster-slim
33
ENV RUSTUP_HOME=/usr/local/rustup \
44
CARGO_HOME=/usr/local/cargo \
55
PATH=/usr/local/cargo/bin:$PATH \
6-
RUST_VERSION=1.77.0
6+
RUST_VERSION=1.77.1
77

88
RUN set -eux; \
99
apt-get update; \

x.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import subprocess
77
import sys
88

9-
stable_rust_version = "1.77.0"
9+
stable_rust_version = "1.77.1"
1010
supported_rust_versions = [stable_rust_version, "nightly"]
1111
rustup_version = "1.27.0"
1212

0 commit comments

Comments
 (0)