1.16.0 Release (#1055)

This commit is contained in:
Charlie Drage 2018-07-24 12:54:29 -04:00 committed by GitHub
parent ccba62918e
commit 0c01309fe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 33 additions and 11 deletions

View File

@ -1,5 +1,26 @@
# Change Log
## [v1.16.0](https://github.com/kubernetes/kompose/tree/v1.16.0) (2018-07-24)
[Full Changelog](https://github.com/kubernetes/kompose/compare/v1.15.0...v1.16.0)
**Closed issues:**
- 'environment' with 'env-file' specified together for service in docker-compose.yml don't work [\#1013](https://github.com/kubernetes/kompose/issues/1013)
- depends\_on with conditions [\#939](https://github.com/kubernetes/kompose/issues/939)
- kompose does not indicate key nor line number when printing error [\#915](https://github.com/kubernetes/kompose/issues/915)
- Local volumes \(from host\) via conversion [\#855](https://github.com/kubernetes/kompose/issues/855)
- error with autogenerated cluster name [\#713](https://github.com/kubernetes/kompose/issues/713)
- kompose build fails: unable to create tarball [\#656](https://github.com/kubernetes/kompose/issues/656)
- Support for: top-level volumes. [\#447](https://github.com/kubernetes/kompose/issues/447)
- Validate/test artifacts generated by Kompose [\#133](https://github.com/kubernetes/kompose/issues/133)
**Merged pull requests:**
- Add installation instructions for openSUSE/SLE [\#1050](https://github.com/kubernetes/kompose/pull/1050) ([suntorytimed](https://github.com/suntorytimed))
- Add surajnarwade in OWNER file [\#1047](https://github.com/kubernetes/kompose/pull/1047) ([surajnarwade](https://github.com/surajnarwade))
- Support node.labels at placement [\#1041](https://github.com/kubernetes/kompose/pull/1041) ([jvitor83](https://github.com/jvitor83))
- Fix environment with env\_file bug [\#1020](https://github.com/kubernetes/kompose/pull/1020) ([hangyan](https://github.com/hangyan))
## [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)
@ -12,6 +33,7 @@
**Merged pull requests:**
- 1.15.0 Release [\#1044](https://github.com/kubernetes/kompose/pull/1044) ([cdrage](https://github.com/cdrage))
- 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))

View File

@ -45,10 +45,10 @@ __Linux and macOS:__
```sh
# Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-linux-amd64 -o kompose
curl -L https://github.com/kubernetes/kompose/releases/download/v1.16.0/kompose-linux-amd64 -o kompose
# macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-darwin-amd64 -o kompose
curl -L https://github.com/kubernetes/kompose/releases/download/v1.16.0/kompose-darwin-amd64 -o kompose
chmod +x kompose
sudo mv ./kompose /usr/local/bin/kompose
@ -56,7 +56,7 @@ sudo mv ./kompose /usr/local/bin/kompose
__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.
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.16.0/kompose-windows-amd64.exe) and add the binary to your PATH.
## Shell autocompletion

View File

@ -1 +1 @@
1.15.0
1.16.0

View File

@ -10,10 +10,10 @@ __Linux and macOS:__
```sh
# Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-linux-amd64 -o kompose
curl -L https://github.com/kubernetes/kompose/releases/download/v1.16.0/kompose-linux-amd64 -o kompose
# macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-darwin-amd64 -o kompose
curl -L https://github.com/kubernetes/kompose/releases/download/v1.16.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.15.0/kompose-windows-amd64.exe) and add the binary to your PATH.
Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.16.0/kompose-windows-amd64.exe) and add the binary to your PATH.
#### Go

View File

@ -47,13 +47,13 @@ Grab the Kompose binary!
```sh
# Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-linux-amd64 -o kompose
curl -L https://github.com/kubernetes/kompose/releases/download/v1.16.0/kompose-linux-amd64 -o kompose
# macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.15.0/kompose-darwin-amd64 -o kompose
curl -L https://github.com/kubernetes/kompose/releases/download/v1.16.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.15.0/kompose-windows-amd64.exe) and add the binary to your PATH.
_Windows:_ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.16.0/kompose-windows-amd64.exe) and add the binary to your PATH.

View File

@ -2,7 +2,7 @@ package version
var (
// VERSION is version number that will be displayed when running ./kompose version
VERSION = "1.15.0"
VERSION = "1.16.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