From e3cd4d459e62697f15a6a655bf17269adfb3cf23 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Thu, 28 Jun 2018 12:05:25 -0400 Subject: [PATCH] 1.15.0 Release (#1044) --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 6 +++--- build/VERSION | 2 +- docs/installation.md | 6 +++--- docs/introduction.md | 6 +++--- pkg/version/version.go | 2 +- 6 files changed, 29 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 851278be..3af14ab9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## [v1.15.0](https://github.com/kubernetes/kompose/tree/v1.15.0) (2018-06-28) +[Full Changelog](https://github.com/kubernetes/kompose/compare/v1.14.0...v1.15.0) + +**Closed issues:** + +- Correct DL-link to latest kompose in installation guide [\#952](https://github.com/kubernetes/kompose/issues/952) +- Add development.md to site, refactor with `make vendor-update` [\#879](https://github.com/kubernetes/kompose/issues/879) +- update integration doc [\#857](https://github.com/kubernetes/kompose/issues/857) +- Enable kompose to generate configs per docker-compose service [\#657](https://github.com/kubernetes/kompose/issues/657) + +**Merged pull requests:** + +- Typo fix: erroring -\> error [\#1032](https://github.com/kubernetes/kompose/pull/1032) ([mirake](https://github.com/mirake)) +- Fix invalid port name with uppercase characters [\#1029](https://github.com/kubernetes/kompose/pull/1029) ([denverdino](https://github.com/denverdino)) +- Typo fix in maven-example.md [\#1021](https://github.com/kubernetes/kompose/pull/1021) ([AdamDang](https://github.com/AdamDang)) +- Kompose will read input from stdin [\#871](https://github.com/kubernetes/kompose/pull/871) ([surajnarwade](https://github.com/surajnarwade)) + ## [v1.14.0](https://github.com/kubernetes/kompose/tree/v1.14.0) (2018-06-04) [Full Changelog](https://github.com/kubernetes/kompose/compare/v1.13.0...v1.14.0) @@ -10,6 +27,7 @@ **Merged pull requests:** +- 1.14.0 Release [\#1030](https://github.com/kubernetes/kompose/pull/1030) ([cdrage](https://github.com/cdrage)) - Typo fix: overwite -\> overwrite [\#1028](https://github.com/kubernetes/kompose/pull/1028) ([mirake](https://github.com/mirake)) - Typo fix in tests.sh: kubernets-\>kubernetes [\#1018](https://github.com/kubernetes/kompose/pull/1018) ([AdamDang](https://github.com/AdamDang)) - Update contact information for sebgoa [\#1017](https://github.com/kubernetes/kompose/pull/1017) ([cdrage](https://github.com/cdrage)) diff --git a/README.md b/README.md index b8e22d55..a4136654 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,10 @@ __Linux and macOS:__ ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose @@ -55,7 +55,7 @@ sudo mv ./kompose /usr/local/bin/kompose __Windows:__ -Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-windows-amd64.exe) and add the binary to your PATH. ## Shell autocompletion diff --git a/build/VERSION b/build/VERSION index 850e7424..141f2e80 100644 --- a/build/VERSION +++ b/build/VERSION @@ -1 +1 @@ -1.14.0 +1.15.0 diff --git a/docs/installation.md b/docs/installation.md index d8bfdb4c..ea8fcad9 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -10,10 +10,10 @@ __Linux and macOS:__ ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose @@ -21,7 +21,7 @@ sudo mv ./kompose /usr/local/bin/kompose __Windows:__ -Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-windows-amd64.exe) and add the binary to your PATH. #### Go diff --git a/docs/introduction.md b/docs/introduction.md index 5a731899..7371d6f7 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -47,13 +47,13 @@ Grab the Kompose binary! ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose ``` -_Windows:_ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.14.0/kompose-windows-amd64.exe) and add the binary to your PATH. +_Windows:_ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-windows-amd64.exe) and add the binary to your PATH. diff --git a/pkg/version/version.go b/pkg/version/version.go index 4d5ca387..9f5b2a2e 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -2,7 +2,7 @@ package version var ( // VERSION is version number that will be displayed when running ./kompose version - VERSION = "1.14.0" + VERSION = "1.15.0" // GITCOMMIT is hash of the commit that will be displayed when running ./kompose version // this will be overwritten when running build like this: go build -ldflags="-X github.com/kubernetes/kompose/pkg/version.GITCOMMIT=$(GITCOMMIT)" // HEAD is default indicating that this was not set during build