diff --git a/CHANGELOG.md b/CHANGELOG.md index cb5cf20..4f68f62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ +# 0.4.0-rust-1.65.0 + +* Upgrade to Rust [`1.65.0`](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) + # 0.4.0-rust-1.64.0 * Upgrade to Rust [`1.64.0`](https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html) diff --git a/Dockerfile b/Dockerfile index 90e4355..a42b558 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2 -ARG RUST_VERSION=1.64.0 +ARG RUST_VERSION=1.65.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 962377e..1a2242b 100644 --- a/Dockerfile_arm64 +++ b/Dockerfile_arm64 @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2-arm64 -ARG RUST_VERSION=1.64.0 +ARG RUST_VERSION=1.65.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 d386bea..33e5238 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ DOCKER ?= docker INPUT_RELEASE_VERSION ?= 0.4.0 -RUST_VERSION ?= 1.64.0 +RUST_VERSION ?= 1.65.0 REPO ?= rustserverless/lambda-rust TAG ?= latest