Skip to content

Commit fc7501f

Browse files
authored
Merge pull request #47 from AaronMorton/master
feat(rust): Update rust version to 1.64.0
2 parents 9437cb4 + 421d496 commit fc7501f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<!--markdownlint-disable MD025 -->
2+
# 0.4.0-rust-1.64.0
3+
4+
* Upgrade to Rust [`1.64.0`](https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html)
5+
26
# 0.4.0-rust-1.62.0
37

48
* Upgrade to Rust [`1.62.0`](https://blog.rust-lang.org/2022/06/30/Rust-1.62.0.html)

Dockerfile

Lines changed: 1 addition & 1 deletion
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.62.0
3+
ARG RUST_VERSION=1.64.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

Lines changed: 1 addition & 1 deletion
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.62.0
3+
ARG RUST_VERSION=1.64.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

Lines changed: 1 addition & 1 deletion
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.62.0
3+
RUST_VERSION ?= 1.64.0
44
REPO ?= rustserverless/lambda-rust
55
TAG ?= latest
66

0 commit comments

Comments
 (0)