diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c343ecc..c5baa4f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Change Log +## [v1.11.0](https://github.com/kubernetes/kompose/tree/v1.11.0) (2018-03-26) +[Full Changelog](https://github.com/kubernetes/kompose/compare/v1.10.0...v1.11.0) + +**Closed issues:** + +- Kompose fails on version 3 with deploy-resources-limits \(panic: runtime error: invalid memory address or nil pointer dereference\) [\#959](https://github.com/kubernetes/kompose/issues/959) +- Error transforming Kubernetes objects [\#876](https://github.com/kubernetes/kompose/issues/876) +- volumes long-syntax doesn't work [\#865](https://github.com/kubernetes/kompose/issues/865) +- unit test for annotation [\#753](https://github.com/kubernetes/kompose/issues/753) +- hostPath volumes? [\#109](https://github.com/kubernetes/kompose/issues/109) + +**Merged pull requests:** + +- Fix golint warnings [\#967](https://github.com/kubernetes/kompose/pull/967) ([hangyan](https://github.com/hangyan)) +- Add hangyan to OWNERS [\#963](https://github.com/kubernetes/kompose/pull/963) ([cdrage](https://github.com/cdrage)) +- fix pod-controller relationship mistake [\#961](https://github.com/kubernetes/kompose/pull/961) ([jonyhy96](https://github.com/jonyhy96)) +- Fix deploy resources parse error [\#960](https://github.com/kubernetes/kompose/pull/960) ([hangyan](https://github.com/hangyan)) +- Support hostpath volume [\#957](https://github.com/kubernetes/kompose/pull/957) ([hangyan](https://github.com/hangyan)) +- Refactor tests script to uses vars [\#956](https://github.com/kubernetes/kompose/pull/956) ([hangyan](https://github.com/hangyan)) +- Add script for generating deb / rpm packages [\#955](https://github.com/kubernetes/kompose/pull/955) ([cdrage](https://github.com/cdrage)) +- Add support for compose v3.2 [\#954](https://github.com/kubernetes/kompose/pull/954) ([hangyan](https://github.com/hangyan)) +- Remove bintray instructions [\#953](https://github.com/kubernetes/kompose/pull/953) ([cdrage](https://github.com/cdrage)) +- Support old restart policy in compose v3 [\#950](https://github.com/kubernetes/kompose/pull/950) ([hangyan](https://github.com/hangyan)) +- Allow services to use same port with different protocols [\#907](https://github.com/kubernetes/kompose/pull/907) ([caglar10ur](https://github.com/caglar10ur)) + ## [v1.10.0](https://github.com/kubernetes/kompose/tree/v1.10.0) (2018-03-06) [Full Changelog](https://github.com/kubernetes/kompose/compare/v1.9.0...v1.10.0) @@ -27,6 +52,7 @@ **Merged pull requests:** +- 1.10.0 Release [\#951](https://github.com/kubernetes/kompose/pull/951) ([cdrage](https://github.com/cdrage)) - Fix broken links for volume long syntax in comments [\#949](https://github.com/kubernetes/kompose/pull/949) ([hangyan](https://github.com/hangyan)) - Refactor label names to const strings [\#948](https://github.com/kubernetes/kompose/pull/948) ([hangyan](https://github.com/hangyan)) - Fix image build path error [\#946](https://github.com/kubernetes/kompose/pull/946) ([hangyan](https://github.com/hangyan)) diff --git a/README.md b/README.md index f5d246b5..f487bbc8 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.10.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.11.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.11.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.10.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.11.0/kompose-windows-amd64.exe) and add the binary to your PATH. ## Shell autocompletion diff --git a/build/VERSION b/build/VERSION index 81c871de..1cac385c 100644 --- a/build/VERSION +++ b/build/VERSION @@ -1 +1 @@ -1.10.0 +1.11.0 diff --git a/docs/installation.md b/docs/installation.md index a19e046e..cca53355 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.10.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.11.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.11.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.10.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.11.0/kompose-windows-amd64.exe) and add the binary to your PATH. #### Go diff --git a/docs/introduction.md b/docs/introduction.md index b3eea386..403f0cba 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.10.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.11.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.11.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.10.0/kompose-windows-amd64.exe) and add the binary to your PATH. +_Windows:_ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.11.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 2c806378..db446410 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.10.0" + VERSION = "1.11.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