You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2020/10/03 05:22:23 UTC

[openwhisk-runtime-rust] branch master updated: prep for 1.1.0 release (#25)

This is an automated email from the ASF dual-hosted git repository.

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-rust.git


The following commit(s) were added to refs/heads/master by this push:
     new 7413669  prep for 1.1.0 release (#25)
7413669 is described below

commit 7413669ee28596210dfa468408d7ef2975c984a3
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Sat Oct 3 01:22:15 2020 -0400

    prep for 1.1.0 release (#25)
---
 core/rust1.34/CHANGELOG.md | 4 ++++
 core/rust1.34/Dockerfile   | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/core/rust1.34/CHANGELOG.md b/core/rust1.34/CHANGELOG.md
index c945bc1..d0c8e7e 100644
--- a/core/rust1.34/CHANGELOG.md
+++ b/core/rust1.34/CHANGELOG.md
@@ -19,5 +19,9 @@
 
 # Rust  OpenWhisk Runtime Container
 
+## 1.1.0
+  - Move from golang:1.12 to golang:1.15 to build the runtime proxy.
+  - Build proxy from openwhisk-runtime-go 1.16.0 release
+
 ## 1.0.0
   - Initial release
diff --git a/core/rust1.34/Dockerfile b/core/rust1.34/Dockerfile
index 569f3f1..cc5ddd8 100644
--- a/core/rust1.34/Dockerfile
+++ b/core/rust1.34/Dockerfile
@@ -16,12 +16,12 @@
 #
 
 # build go proxy from source
-FROM golang:1.12 AS builder_source
+FROM golang:1.15 AS builder_source
 RUN env CGO_ENABLED=0 go get github.com/apache/openwhisk-runtime-go/main && mv /go/bin/main /bin/proxy
 
 # or build it from a release
-FROM golang:1.12 AS builder_release
-ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
+FROM golang:1.15 AS builder_release
+ARG GO_PROXY_RELEASE_VERSION=1.15@1.16.0
 RUN curl -sL \
   https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
   | tar xzf -\