You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by st...@apache.org on 2020/10/15 15:04:50 UTC

[openwhisk] branch master updated: Prepare release 1.0.0 (#4999)

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

style95 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 67b3b11  Prepare release 1.0.0 (#4999)
67b3b11 is described below

commit 67b3b1106a615f7e06610274e59ad688715203a9
Author: Dominic Kim <st...@apache.org>
AuthorDate: Fri Oct 16 00:04:36 2020 +0900

    Prepare release 1.0.0 (#4999)
    
    * Update the notice
    
    * Move executables to the bin directory
---
 NOTICE.txt                          | 2 +-
 core/standalone/Dockerfile          | 4 ++--
 core/standalone/{ => bin}/init      | 0
 core/standalone/{ => bin}/stop      | 0
 core/standalone/{ => bin}/waitready | 0
 5 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/NOTICE.txt b/NOTICE.txt
index b3b5bb1..e90bf96 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache OpenWhisk
-Copyright 2016-2019 The Apache Software Foundation
+Copyright 2016-2020 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/core/standalone/Dockerfile b/core/standalone/Dockerfile
index 6b01383..676b1eb 100644
--- a/core/standalone/Dockerfile
+++ b/core/standalone/Dockerfile
@@ -18,8 +18,8 @@ FROM scala
 ARG OPENWHISK_JAR
 ENV DOCKER_VERSION=18.06.3-ce
 ENV WSK_VERSION=1.0.0
-ADD init /
-ADD stop waitready /bin/
+ADD bin/init /
+ADD bin/stop bin/waitready /bin/
 RUN chmod +x /bin/stop /bin/waitready ;\
   curl -sL \
   https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz \
diff --git a/core/standalone/init b/core/standalone/bin/init
similarity index 100%
rename from core/standalone/init
rename to core/standalone/bin/init
diff --git a/core/standalone/stop b/core/standalone/bin/stop
similarity index 100%
rename from core/standalone/stop
rename to core/standalone/bin/stop
diff --git a/core/standalone/waitready b/core/standalone/bin/waitready
similarity index 100%
rename from core/standalone/waitready
rename to core/standalone/bin/waitready