You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WIP - Remove 'incubat(ing, ion, or)' designation and disclaimer (#454)
* Remove 'incubat(ing, ion, or)' designation and disclaimer
* Updating commit hash in build.gradle; not sure how to regen vendor.json
* used 'govendor update +vendor' to update vendor.json... i think
* update commit hash for 'client-go' in build.gradle
* update commit hash for 'client-go' in build.gradle
After cloning the source code, you need to install all the dependencies by running the command under openwhisk cli folder:
@@ -44,17 +44,17 @@ or
44
44
$ make deps
45
45
```
46
46
47
-
You should be able to build the binaries with either the go command or the Gradle command, which is available in [README](https://github.com/apache/incubator-openwhisk-cli/blob/master/README.md).
47
+
You should be able to build the binaries with either the go command or the Gradle command, which is available in [README](https://github.com/apache/openwhisk-cli/blob/master/README.md).
48
48
49
49
50
50
## Proposing new features
51
51
52
-
If you would like to implement a new feature, please [raise an issue](https://github.com/apache/incubator-openwhisk-cli/issues) before sending a pull request so the feature can be discussed.
52
+
If you would like to implement a new feature, please [raise an issue](https://github.com/apache/openwhisk-cli/issues) before sending a pull request so the feature can be discussed.
53
53
This is to avoid you spending your valuable time working on a feature that the project developers are not willing to accept into the code base.
54
54
55
55
## Fixing bugs
56
56
57
-
If you would like to fix a bug, please [raise an issue](https://github.com/apache/incubator-openwhisk-cli/issues) before sending a pull request so it can be discussed.
57
+
If you would like to fix a bug, please [raise an issue](https://github.com/apache/openwhisk-cli/issues) before sending a pull request so it can be discussed.
58
58
If the fix is trivial or non controversial then this is not usually necessary.
59
59
60
60
## Merge approval
@@ -69,7 +69,7 @@ Please use [Slack channel #whisk-users](https://cloudplatform.slack.com/messages
69
69
70
70
## Setup
71
71
72
-
Project was written with `Go v1.9`. It has a dependency on [incubator-openwhisk-client-go](https://github.com/apache/incubator-openwhisk-client-go).
72
+
Project was written with `Go v1.9`. It has a dependency on [openwhisk-client-go](https://github.com/apache/openwhisk-client-go).
73
73
74
74
## Testing
75
75
@@ -85,12 +85,12 @@ Use idomatic go. Document exported functions.
85
85
86
86
[Homebrew](https://brew.sh) is used to install `wsk` locally. Once we release a new version of `wsk` we should update its version in homebrew.
87
87
88
-
Get the new release SHA256 checksum by downloading the Source Code (tar.gz) from the [releases page](https://github.com/apache/incubator-openwhisk-cli/releases) and running `shasum -a 256 X.Y.Z.tar.gz` on the tarball.
88
+
Get the new release SHA256 checksum by downloading the Source Code (tar.gz) from the [releases page](https://github.com/apache/openwhisk-cli/releases) and running `shasum -a 256 X.Y.Z.tar.gz` on the tarball.
89
89
90
90
Update brew formula with the automation command `brew bump-formula-pr`:
@@ -29,7 +29,7 @@ provides a consistent interface to interact with OpenWhisk services.
29
29
30
30
# Where to download the binary of OpenWhisk CLI
31
31
32
-
The OpenWhisk CLI is available on the [releases page](https://github.com/apache/incubator-openwhisk-cli/releases). We
32
+
The OpenWhisk CLI is available on the [releases page](https://github.com/apache/openwhisk-cli/releases). We
33
33
currently have binaries available for Linux, Mac OS and Windows under i386 and
34
34
amd64 architectures. Linux versions are also available under Linux on Z, Power
35
35
and 64-bit ARM architectures. You can download the binary, which fits your
@@ -115,8 +115,8 @@ typing:
115
115
116
116
```
117
117
$ cd $GOPATH
118
-
$ go get github.com/apache/incubator-openwhisk-cli
119
-
$ cd $GOPATH/src/github.com/apache/incubator-openwhisk-cli
118
+
$ go get github.com/apache/openwhisk-cli
119
+
$ cd $GOPATH/src/github.com/apache/openwhisk-cli
120
120
```
121
121
122
122
The CLI internationalization should be generated dynamically using the
@@ -136,7 +136,7 @@ $ govendor sync # Download and install packages with specified dependencies.
136
136
```
137
137
138
138
NOTE: As a temporary workaround, you have to remove a redundant instance of `spf13/cobra`
139
-
in the vendor folder. See this [issue](https://github.com/apache/incubator-openwhisk-cli/issues/398) for details.
139
+
in the vendor folder. See this [issue](https://github.com/apache/openwhisk-cli/issues/398) for details.
140
140
```
141
141
$ rm -rf vendor/github.com/spf13
142
142
```
@@ -186,7 +186,3 @@ Travis CI is used as a continuous delivery service for Linux and Mac.
186
186
Currently Travis CI supports the environments of Linux and Mac,
187
187
but it is not available for Windows. We will add support of AppVeyor CI in
188
188
future to run test cases and build the binary for Windows.
189
-
190
-
# Disclaimer
191
-
192
-
Apache OpenWhisk Command-line Interface (CLI) is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
0 commit comments