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 2018/02/15 11:51:53 UTC

[incubator-openwhisk-runtime-swift] branch master updated: Update changelogs (#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/incubator-openwhisk-runtime-swift.git


The following commit(s) were added to refs/heads/master by this push:
     new b320f30  Update changelogs (#25)
b320f30 is described below

commit b320f30a99cfea3af1039cab6dcc9b343279c204
Author: Carlos Santana <cs...@gmail.com>
AuthorDate: Thu Feb 15 06:51:51 2018 -0500

    Update changelogs (#25)
    
    * Update changelogs
    
    * fix small bug with publish script
---
 README.md                          |  6 ++++++
 core/swift3.1.1Action/CHANGELOG.md | 11 +++++++++++
 core/swift40Action/CHANGELOG.md    | 18 ++++++++++++++----
 core/swift41Action/CHANGELOG.md    | 11 +++++++++++
 tools/travis/publish.sh            |  1 -
 5 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 7ee82ac..558b548 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,12 @@
 
 [![Build Status](https://travis-ci.org/apache/incubator-openwhisk-runtime-swift.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-runtime-swift)
 
+## Changelogs
+- [Swift 3.1.1 CHANGELOG.md](core/swift3.1.1Action/CHANGELOG.md)
+- [Swift 4.0   CHANGELOG.md](core/swift40Action/CHANGELOG.md)
+- [Swift 4.1   CHANGELOG.md](core/swift41Action/CHANGELOG.md)
 
+## Quick Swift Action
 ### Simple swift action hello.swift
 The traditional support for dictionary still works:
 ```swift
@@ -15,6 +20,7 @@ func main(args: [String:Any]) -> [String:Any] {
 }
 ```
 
+## Swift 4.x support
 ### Packaging an action as a Swift executable using Swift 4
 
 When you create an OpenWhisk Swift action with a Swift source file, it has to be compiled into a binary before the action is run. Once done, subsequent calls to the action are much faster until the container holding your action is purged. This delay is known as the cold-start delay.
diff --git a/core/swift3.1.1Action/CHANGELOG.md b/core/swift3.1.1Action/CHANGELOG.md
new file mode 100644
index 0000000..c523b2e
--- /dev/null
+++ b/core/swift3.1.1Action/CHANGELOG.md
@@ -0,0 +1,11 @@
+# Apache OpenWhisk Swift 3.1 Runtime Container
+
+## 1.0.0
+Initial Swift 3.1 image
+  - Image name: `openwhisk/action-swift-v3.1.1`
+  - Kind is: `swift:3.1.1`
+
+Swift runtime version: [3.1.1](https://github.com/IBM-Swift/swift-ubuntu-docker/blob/58ee2502030deaa7273e3924b9b59495a929b66f/swift-development/Dockerfile)
+
+Packages included:
+  - No packages included, use Package.swift and pre-compile action.
diff --git a/core/swift40Action/CHANGELOG.md b/core/swift40Action/CHANGELOG.md
index 74cb32a..b934d8b 100644
--- a/core/swift40Action/CHANGELOG.md
+++ b/core/swift40Action/CHANGELOG.md
@@ -1,10 +1,20 @@
-# Apache OpenWhisk Swift 4 Runtime Container
+# Apache OpenWhisk Swift 4.0 Runtime Container
+
+## 1.0.1
+Changes:
+  - Rename image name to `openwhisk/action-swift-v4.0`
+  - Rename kind to `swift:4.0`
+
+Swift runtime version: [4.0.3](https://github.com/IBM-Swift/swift-ubuntu-docker/blob/4a821e2db45f7839789f0f516863be8295142ab1/swift-development/Dockerfile)
+
+
 
 ## 1.0.0
-Initial swift 4 image
+Initial Swift 4.0 image
+  - Image name: `openwhisk/action-swift-v4`
+  - Kind is: `swift:4`
 
-Swift 4 runtime version:
-  - [4.0.3](https://hub.docker.com/r/ibmcom/swift-ubuntu/tags/4.0.3/)
+Swift runtime version: [4.0.3](https://github.com/IBM-Swift/swift-ubuntu-docker/blob/4a821e2db45f7839789f0f516863be8295142ab1/swift-development/Dockerfile)
 
 Packages included:
   - No packages included, use Package.swift and pre-compile action.
diff --git a/core/swift41Action/CHANGELOG.md b/core/swift41Action/CHANGELOG.md
new file mode 100644
index 0000000..33fe179
--- /dev/null
+++ b/core/swift41Action/CHANGELOG.md
@@ -0,0 +1,11 @@
+# Apache OpenWhisk Swift 4.1 Runtime Container
+
+## 0.1.0
+Initial Swift 4.1 image
+  - Image name: `openwhisk/action-swift-v4.1`
+  - Kind is: `swift:4.1`
+
+Swift runtime version: [swift-4.1-DEVELOPMENT-SNAPSHOT-2018-02-13-a](https://swift.org/builds/swift-4.1-branch/ubuntu1404/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-02-13-a/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-02-13-a-ubuntu14.04.tar.gz)
+
+Packages included:
+  - No packages included, use Package.swift and pre-compile action.
diff --git a/tools/travis/publish.sh b/tools/travis/publish.sh
index 97f2ed0..ce6f369 100755
--- a/tools/travis/publish.sh
+++ b/tools/travis/publish.sh
@@ -17,7 +17,6 @@ if [ ${RUNTIME_VERSION} == "3.1.1" ]; then
   RUNTIME="swift3.1.1Action"
 elif [ ${RUNTIME_VERSION} == "4.0" ]; then
   RUNTIME="swift40Action"
-fi
 elif [ ${RUNTIME_VERSION} == "4.1" ]; then
   RUNTIME="swift41Action"
 fi

-- 
To stop receiving notification emails like this one, please contact
rabbah@apache.org.