Skip to content

Commit 3dea3da

Browse files
committed
Bump to 1.46.0
1 parent 05e1380 commit 3dea3da

File tree

8 files changed

+9
-75
lines changed

8 files changed

+9
-75
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ services: docker
33

44
env:
55
#VERSIONS
6-
- VERSION=1.45.2 VARIANT=stretch
7-
- VERSION=1.45.2 VARIANT=stretch/slim
8-
- VERSION=1.45.2 VARIANT=buster
9-
- VERSION=1.45.2 VARIANT=buster/slim
10-
- VERSION=1.45.2 VARIANT=alpine3.11
11-
- VERSION=1.45.2 VARIANT=alpine3.12
6+
- VERSION=1.46.0 VARIANT=buster
7+
- VERSION=1.46.0 VARIANT=buster/slim
8+
- VERSION=1.46.0 VARIANT=alpine3.11
9+
- VERSION=1.46.0 VARIANT=alpine3.12
1210
#VERSIONS
1311

1412
install:

1.45.2/stretch/Dockerfile

Lines changed: 0 additions & 26 deletions
This file was deleted.

1.45.2/stretch/slim/Dockerfile

Lines changed: 0 additions & 37 deletions
This file was deleted.

1.45.2/alpine3.11/Dockerfile renamed to 1.46.0/alpine3.11/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.45.2
10+
RUST_VERSION=1.46.0
1111

1212
RUN set -eux; \
1313
url="https://static.rust-lang.org/rustup/archive/1.22.1/x86_64-unknown-linux-musl/rustup-init"; \

1.45.2/alpine3.12/Dockerfile renamed to 1.46.0/alpine3.12/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.45.2
10+
RUST_VERSION=1.46.0
1111

1212
RUN set -eux; \
1313
url="https://static.rust-lang.org/rustup/archive/1.22.1/x86_64-unknown-linux-musl/rustup-init"; \

1.45.2/buster/Dockerfile renamed to 1.46.0/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.45.2
6+
RUST_VERSION=1.46.0
77

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

1.45.2/buster/slim/Dockerfile renamed to 1.46.0/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.45.2
6+
RUST_VERSION=1.46.0
77

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

x.py

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

9-
rust_version = "1.45.2"
9+
rust_version = "1.46.0"
1010
rustup_version = "1.22.1"
1111

1212
DebianArch = namedtuple("DebianArch", ["bashbrew", "dpkg", "rust"])
@@ -19,7 +19,6 @@
1919
]
2020

2121
debian_variants = [
22-
"stretch",
2322
"buster",
2423
]
2524

0 commit comments

Comments
 (0)