Skip to content

Commit

Permalink
Merge pull request #41 from rust-serverless/feature/release_1.59
Browse files Browse the repository at this point in the history
feat: update Rust to 1.59
  • Loading branch information
zamazan4ik authored Mar 22, 2022
2 parents 14a5222 + 1ff7f05 commit 7565f20
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_arm64
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 7565f20

Please sign in to comment.