prep for 1.1.0 release (#25)

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 -\