From 2c914d9894d1c7a4a4813869fa53e0a399cf3d73 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 17 Apr 2018 13:32:13 -0400 Subject: [PATCH] 0.12.0 Release (#617) --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- cmd/version.go | 2 +- docs/installation.md | 6 +++--- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73691fdae..89bc9738a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v0.12.0](https://github.com/kedgeproject/kedge/tree/v0.12.0) (2018-04-17) +[Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.11.0...v0.12.0) + +**Merged pull requests:** + +- Default value having colon can be parsed now [\#616](https://github.com/kedgeproject/kedge/pull/616) ([surajssd](https://github.com/surajssd)) + ## [v0.11.0](https://github.com/kedgeproject/kedge/tree/v0.11.0) (2018-03-26) [Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.10.0...v0.11.0) @@ -10,6 +17,7 @@ **Merged pull requests:** +- 0.11.0 Release [\#615](https://github.com/kedgeproject/kedge/pull/615) ([cdrage](https://github.com/cdrage)) - Trim whitespaces before env lookup [\#612](https://github.com/kedgeproject/kedge/pull/612) ([surajssd](https://github.com/surajssd)) ## [v0.10.0](https://github.com/kedgeproject/kedge/tree/v0.10.0) (2018-03-06) diff --git a/README.md b/README.md index df23e4f92..f18ab408c 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,10 @@ __Linux and macOS:__ ```sh # Linux -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-linux-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.12.0/kedge-linux-amd64 -o kedge # macOS -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-darwin-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.12.0/kedge-darwin-amd64 -o kedge chmod +x kedge sudo mv ./kedge /usr/local/bin/kedge @@ -38,7 +38,7 @@ sudo mv ./kedge /usr/local/bin/kedge __Windows:__ -Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.12.0/kedge-windows-amd64.exe) and add the binary to your PATH. A more thorough installation guide is [also available](http://kedgeproject.org/installation). diff --git a/cmd/version.go b/cmd/version.go index 511c4efbb..feb53b3ad 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -24,7 +24,7 @@ import ( var ( // VERSION is version number that will be displayed when running ./kedge version - VERSION = "0.11.0" + VERSION = "0.12.0" // GITCOMMIT is hash of the commit that wil be displayed when running ./kedge version // this will be overwritten when running build like this: go build -ldflags="-X github.com/kedgeproject/kedge/cmd.GITCOMMIT=$(GITCOMMIT)" diff --git a/docs/installation.md b/docs/installation.md index 66b2b7e86..36c26a063 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -11,10 +11,10 @@ __Linux and macOS:__ ```sh # Linux -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-linux-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.12.0/kedge-linux-amd64 -o kedge # macOS -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-darwin-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.12.0/kedge-darwin-amd64 -o kedge chmod +x kedge sudo mv ./kedge /usr/local/bin/kedge @@ -22,7 +22,7 @@ sudo mv ./kedge /usr/local/bin/kedge __Windows:__ -Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.12.0/kedge-windows-amd64.exe) and add the binary to your PATH. #### Installing the latest binary (master)