From 9a8692f89033bc3c32034d444e40153b4714e9cf Mon Sep 17 00:00:00 2001 From: Alexander Zaitsev Date: Fri, 21 Jan 2022 12:45:04 +0300 Subject: [PATCH] feat: update to Rust 1.58.1 - update to Rust 1.58.1 --- CHANGELOG.md | 4 ++++ Dockerfile | 2 +- Makefile | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1283e35..3021ee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 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) + # 0.4.0-rust-1.58.0 * Upgrade to Rust [`1.58.0`](https://blog.rust-lang.org/2022/01/13/Rust-1.58.0.html) diff --git a/Dockerfile b/Dockerfile index 78d4280..71a7ead 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM public.ecr.aws/lambda/provided:al2 -ARG RUST_VERSION=1.58.0 +ARG RUST_VERSION=1.58.1 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 e9e9406..11cd0b0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ DOCKER ?= docker INPUT_RELEASE_VERSION ?= 0.4.0 -RUST_VERSION ?= 1.58.0 +RUST_VERSION ?= 1.58.1 REPO ?= rustserverless/lambda-rust TAG ?= latest