Skip to content

Commit 7565f20

Browse files
authored
Merge pull request #41 from rust-serverless/feature/release_1.59
feat: update Rust to 1.59
2 parents 14a5222 + 1ff7f05 commit 7565f20

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.0-rust-1.59.0
2+
3+
* Upgrade to Rust [`1.59.0`](https://blog.rust-lang.org/2022/02/24/Rust-1.59.0.html)
4+
15
# 0.4.0-rust-1.58.1
26

37
* Upgrade to Rust [`1.58.1`](https://blog.rust-lang.org/2022/01/20/Rust-1.58.1.html)

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM public.ecr.aws/lambda/provided:al2
22

3-
ARG RUST_VERSION=1.58.1
3+
ARG RUST_VERSION=1.59.0
44
RUN yum install -y jq openssl-devel gcc zip
55
RUN set -o pipefail && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
66
| CARGO_HOME=/cargo RUSTUP_HOME=/rustup sh -s -- -y --profile minimal --default-toolchain $RUST_VERSION

Dockerfile_arm64

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM public.ecr.aws/lambda/provided:al2-arm64
22

3-
ARG RUST_VERSION=1.58.1
3+
ARG RUST_VERSION=1.59.0
44
RUN yum install -y jq openssl-devel gcc zip
55
RUN set -o pipefail && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
66
| CARGO_HOME=/cargo RUSTUP_HOME=/rustup sh -s -- -y --profile minimal --default-toolchain $RUST_VERSION

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DOCKER ?= docker
22
INPUT_RELEASE_VERSION ?= 0.4.0
3-
RUST_VERSION ?= 1.58.1
3+
RUST_VERSION ?= 1.59.0
44
REPO ?= rustserverless/lambda-rust
55
TAG ?= latest
66

0 commit comments

Comments
 (0)