From d4b438559625454f2c378b610daef13d4e60faac Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Wed, 8 Nov 2017 12:45:09 -0800 Subject: [PATCH] 0.4.0rc version update --- charts/README.md | 2 +- charts/fission-all/Chart.yaml | 4 ++-- charts/fission-all/templates/NOTES.txt | 6 +++--- charts/fission-core/Chart.yaml | 4 ++-- charts/fission-core/templates/NOTES.txt | 6 +++--- controller/api.go | 2 +- fission/main.go | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/charts/README.md b/charts/README.md index 4075a4b5..55ef5e62 100644 --- a/charts/README.md +++ b/charts/README.md @@ -5,7 +5,7 @@ ## Prerequisites -- Kubernetes 1.6+ with Beta APIs enabled +- Kubernetes 1.8 or later ## Helm charts diff --git a/charts/fission-all/Chart.yaml b/charts/fission-all/Chart.yaml index f86e4974..96ffa16b 100644 --- a/charts/fission-all/Chart.yaml +++ b/charts/fission-all/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: fission-all -version: 0.3.0 +version: 0.4.0rc description: Fission is a fast serverless framework for Kubernetes. keywords: - fission @@ -12,4 +12,4 @@ maintainers: - name: Ta Ching Chen email: contact@tachingchen.com engine: gotpl -appVersion: 0.3.0 +appVersion: 0.4.0rc diff --git a/charts/fission-all/templates/NOTES.txt b/charts/fission-all/templates/NOTES.txt index 5e3c04d6..fe230865 100644 --- a/charts/fission-all/templates/NOTES.txt +++ b/charts/fission-all/templates/NOTES.txt @@ -1,13 +1,13 @@ 1. Install the client CLI. Mac: - $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.4.0rc/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ Linux: - $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.4.0rc/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ Windows: - For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/0.3.0/fission-cli-windows.exe + For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/0.4.0rc/fission-cli-windows.exe 2. Set the FISSION_URL and FISSION_ROUTER environment variables. diff --git a/charts/fission-core/Chart.yaml b/charts/fission-core/Chart.yaml index 969c1f30..d9ecaef0 100644 --- a/charts/fission-core/Chart.yaml +++ b/charts/fission-core/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: fission-core -version: 0.3.0 +version: 0.4.0rc description: Fission is a fast serverless framework for Kubernetes. keywords: - fission @@ -12,4 +12,4 @@ maintainers: - name: Ta Ching Chen email: contact@tachingchen.com engine: gotpl -appVersion: 0.3.0 +appVersion: 0.4.0rc diff --git a/charts/fission-core/templates/NOTES.txt b/charts/fission-core/templates/NOTES.txt index 5e3c04d6..fe230865 100644 --- a/charts/fission-core/templates/NOTES.txt +++ b/charts/fission-core/templates/NOTES.txt @@ -1,13 +1,13 @@ 1. Install the client CLI. Mac: - $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.4.0rc/fission-cli-osx && chmod +x fission && sudo mv fission /usr/local/bin/ Linux: - $ curl -Lo fission https://github.com/fission/fission/releases/download/0.3.0/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ + $ curl -Lo fission https://github.com/fission/fission/releases/download/0.4.0rc/fission-cli-linux && chmod +x fission && sudo mv fission /usr/local/bin/ Windows: - For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/0.3.0/fission-cli-windows.exe + For Windows, you can use the linux binary on WSL. Or you can download this windows executable: https://github.com/fission/fission/releases/download/0.4.0rc/fission-cli-windows.exe 2. Set the FISSION_URL and FISSION_ROUTER environment variables. diff --git a/controller/api.go b/controller/api.go index 41f500f9..32fb7c26 100644 --- a/controller/api.go +++ b/controller/api.go @@ -120,7 +120,7 @@ func (api *API) getLogDBConfig(dbType string) logDBConfig { func (api *API) HomeHandler(w http.ResponseWriter, r *http.Request) { w.Header().Set("Content-Type", "application/json; charset=utf-8") - fmt.Fprintf(w, "{\"message\": \"Fission API\", \"version\": \"0.3.0\"}\n") + fmt.Fprintf(w, "{\"message\": \"Fission API\", \"version\": \"0.4.0rc\"}\n") } func (api *API) ApiVersionMismatchHandler(w http.ResponseWriter, r *http.Request) { diff --git a/fission/main.go b/fission/main.go index 19bb2918..c4a85986 100644 --- a/fission/main.go +++ b/fission/main.go @@ -26,7 +26,7 @@ func main() { app := cli.NewApp() app.Name = "fission" app.Usage = "Serverless functions for Kubernetes" - app.Version = "0.3.0" + app.Version = "0.4.0rc" app.Flags = []cli.Flag{ cli.StringFlag{Name: "server", Usage: "Fission server URL", EnvVar: "FISSION_URL"},