Skip to content

Commit 6a3fdb0

Browse files
authored
Merge pull request #48 from cedalio/rust-1.65.0
Update Rust to 1.65.0
2 parents fc7501f + 549e946 commit 6a3fdb0

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.65.0
3+
4+
* Upgrade to Rust [`1.65.0`](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
5+
26
# 0.4.0-rust-1.64.0
37

48
* Upgrade to Rust [`1.64.0`](https://blog.rust-lang.org/2022/09/22/Rust-1.64.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.64.0
3+
ARG RUST_VERSION=1.65.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.64.0
3+
ARG RUST_VERSION=1.65.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.64.0
3+
RUST_VERSION ?= 1.65.0
44
REPO ?= rustserverless/lambda-rust
55
TAG ?= latest
66

0 commit comments

Comments
 (0)