diff --git a/CHANGELOG.md b/CHANGELOG.md index 3021ee5..7991e4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.4.0-rust-1.59.0 + +* Upgrade to Rust [`1.59.0`](https://blog.rust-lang.org/2022/02/24/Rust-1.59.0.html) + # 0.4.0-rust-1.58.1 * Upgrade to Rust [`1.58.1`](https://blog.rust-lang.org/2022/01/20/Rust-1.58.1.html) diff --git a/Dockerfile b/Dockerfile index 71a7ead..347dcba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2 -ARG RUST_VERSION=1.58.1 +ARG RUST_VERSION=1.59.0 RUN yum install -y jq openssl-devel gcc zip RUN set -o pipefail && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \ | CARGO_HOME=/cargo RUSTUP_HOME=/rustup sh -s -- -y --profile minimal --default-toolchain $RUST_VERSION diff --git a/Dockerfile_arm64 b/Dockerfile_arm64 index 5d7ca67..31ee7af 100644 --- a/Dockerfile_arm64 +++ b/Dockerfile_arm64 @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2-arm64 -ARG RUST_VERSION=1.58.1 +ARG RUST_VERSION=1.59.0 RUN yum install -y jq openssl-devel gcc zip RUN set -o pipefail && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \ | CARGO_HOME=/cargo RUSTUP_HOME=/rustup sh -s -- -y --profile minimal --default-toolchain $RUST_VERSION diff --git a/Makefile b/Makefile index 1ba315a..20924a2 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ DOCKER ?= docker INPUT_RELEASE_VERSION ?= 0.4.0 -RUST_VERSION ?= 1.58.1 +RUST_VERSION ?= 1.59.0 REPO ?= rustserverless/lambda-rust TAG ?= latest