diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c42ba07..2b7f6094 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Change Log +## [v1.9.0](https://github.com/kubernetes/kompose/tree/v1.9.0) (2018-02-13) +[Full Changelog](https://github.com/kubernetes/kompose/compare/v1.8.0...v1.9.0) + +**Closed issues:** + +- kompose.volume.size label is not working [\#927](https://github.com/kubernetes/kompose/issues/927) +- "panic: runtime error: invalid memory address or nil pointer dereference" when using environment unset variables [\#918](https://github.com/kubernetes/kompose/issues/918) +- \[doc\] more tutorial for gcloud? [\#833](https://github.com/kubernetes/kompose/issues/833) +- add support for `kompose update` [\#822](https://github.com/kubernetes/kompose/issues/822) +- Cannot locate specified Dockerfile: Dockerfile [\#809](https://github.com/kubernetes/kompose/issues/809) +- kompose build fails: unable to create tarball [\#656](https://github.com/kubernetes/kompose/issues/656) +- kompose passes a kubernetes deployment without image [\#571](https://github.com/kubernetes/kompose/issues/571) +- Support for sysctls [\#441](https://github.com/kubernetes/kompose/issues/441) + +**Merged pull requests:** + +- Refactor package app to use const rather than raw string [\#933](https://github.com/kubernetes/kompose/pull/933) ([hangyan](https://github.com/hangyan)) +- Fix typos in Makefile [\#932](https://github.com/kubernetes/kompose/pull/932) ([hangyan](https://github.com/hangyan)) +- Fix typo in function name [\#931](https://github.com/kubernetes/kompose/pull/931) ([hangyan](https://github.com/hangyan)) +- Fix typos in doc [\#930](https://github.com/kubernetes/kompose/pull/930) ([hangyan](https://github.com/hangyan)) +- Fix custom pvc size in v2 compose not working error [\#929](https://github.com/kubernetes/kompose/pull/929) ([hangyan](https://github.com/hangyan)) +- Fix log format error [\#928](https://github.com/kubernetes/kompose/pull/928) ([hangyan](https://github.com/hangyan)) +- Fix unset env bug for v3 compose [\#926](https://github.com/kubernetes/kompose/pull/926) ([hangyan](https://github.com/hangyan)) +- Fix typo in cli help message [\#925](https://github.com/kubernetes/kompose/pull/925) ([hangyan](https://github.com/hangyan)) +- Remove unneeded TODO comment [\#924](https://github.com/kubernetes/kompose/pull/924) ([hangyan](https://github.com/hangyan)) +- fix a typo in development.md [\#923](https://github.com/kubernetes/kompose/pull/923) ([yank1](https://github.com/yank1)) +- provide more details for building steps [\#921](https://github.com/kubernetes/kompose/pull/921) ([adolphlwq](https://github.com/adolphlwq)) +- Update the README [\#919](https://github.com/kubernetes/kompose/pull/919) ([cdrage](https://github.com/cdrage)) +- Push image without authentication [\#913](https://github.com/kubernetes/kompose/pull/913) ([coodix](https://github.com/coodix)) + ## [v1.8.0](https://github.com/kubernetes/kompose/tree/v1.8.0) (2018-01-24) [Full Changelog](https://github.com/kubernetes/kompose/compare/v1.7.0...v1.8.0) @@ -11,6 +41,7 @@ **Merged pull requests:** +- 1.8.0 Release [\#912](https://github.com/kubernetes/kompose/pull/912) ([cdrage](https://github.com/cdrage)) - Invalid quick start link [\#908](https://github.com/kubernetes/kompose/pull/908) ([a8uhnf](https://github.com/a8uhnf)) - Fix link to binary-installation method in README.md [\#903](https://github.com/kubernetes/kompose/pull/903) ([bhavin192](https://github.com/bhavin192)) diff --git a/README.md b/README.md index 62d0499b..5c3d62dc 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.8.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.8.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.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.8.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-windows-amd64.exe) and add the binary to your PATH. ## Shell autocompletion diff --git a/build/VERSION b/build/VERSION index 27f9cd32..f8e233b2 100644 --- a/build/VERSION +++ b/build/VERSION @@ -1 +1 @@ -1.8.0 +1.9.0 diff --git a/docs/installation.md b/docs/installation.md index 0e10660b..b9ef226d 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.8.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.8.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.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.8.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-windows-amd64.exe) and add the binary to your PATH. #### Nightly / master release diff --git a/docs/introduction.md b/docs/introduction.md index 1aa7a1ae..5da79d64 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.8.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.8.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.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.8.0/kompose-windows-amd64.exe) and add the binary to your PATH. +_Windows:_ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.9.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 64b80bdf..1c1dc685 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -2,7 +2,7 @@ package version var ( // VERSION is version number that wil be displayed when running ./kompose version - VERSION = "1.8.0" + VERSION = "1.9.0" // GITCOMMIT is hash of the commit that wil 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