Skip to content

Commit e51b8f0

Browse files
committed
update changelog with link, one source of truth for RUST_VERSION
1 parent eea731b commit e51b8f0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# 0.2.0-rust-1.31.2 (unreleased)
1+
# 0.2.0-rust-1.32.0 (unreleased)
22

3-
* Upgrade to Rust `1.13.2`
3+
* Upgrade to Rust [`1.32.0`](https://blog.rust-lang.org/2019/01/17/Rust-1.32.0.html)
44

55
# 0.2.0-rust-1.31.1
66

7-
* Upgrade to Rust `1.13.1`
7+
* Upgrade to Rust [`1.13.1`](https://blog.rust-lang.org/2018/12/20/Rust-1.31.1.html)
88

99
# 0.2.0-rust-1.31.0
1010

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# https://github.com/ilianaw/rust-crowbar/issues/20
21
# https://github.com/lambci/docker-lambda#documentation
32
FROM lambci/lambda:build-provided
4-
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.31.2
3+
ARG RUST_VERSION
4+
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUST_VERSION
55
ADD build.sh /usr/local/bin/
66
VOLUME ["/code"]
77
WORKDIR /code

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
VERSION ?= 0.2.0
2-
RUST_VERSION ?= 1.31.2
2+
RUST_VERSION ?= 1.32.0
33
REPO ?= softprops/lambda-rust
44
TAG ?= "$(REPO):$(VERSION)-rust-$(RUST_VERSION)"
55

@@ -8,5 +8,5 @@ publish: build
88
docker push $(REPO):latest
99

1010
build:
11-
docker build -t $(TAG) .
11+
docker build --build-arg RUST_VERSION=$(RUST_VERSION) -t $(TAG) .
1212
docker tag $(TAG) $(REPO):latest

0 commit comments

Comments
 (0)