diff --git a/CHANGELOG.md b/CHANGELOG.md index 299f870a9..22e9d0059 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [v0.5.1](https://github.com/kedgeproject/kedge/tree/v0.5.1) (2017-11-23) +[Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.5.0...v0.5.1) + +**Closed issues:** + +- portMappings errors with `80`, success with `80:80` [\#438](https://github.com/kedgeproject/kedge/issues/438) +- `kedge generate` should create files, rather than go to stdout [\#436](https://github.com/kedgeproject/kedge/issues/436) +- Rename objects [\#427](https://github.com/kedgeproject/kedge/issues/427) +- Need to clarify ingresses / routes examples better. [\#402](https://github.com/kedgeproject/kedge/issues/402) +- Add support for BuildConfig and ImageStreams [\#385](https://github.com/kedgeproject/kedge/issues/385) +- Implement ImageStream [\#317](https://github.com/kedgeproject/kedge/issues/317) + +**Merged pull requests:** + +- Update quickstart [\#476](https://github.com/kedgeproject/kedge/pull/476) ([cdrage](https://github.com/cdrage)) +- docs\(routes\): indent the routes example in README [\#463](https://github.com/kedgeproject/kedge/pull/463) ([surajssd](https://github.com/surajssd)) +- Allow the usage of a string or int as a value in portMappings [\#455](https://github.com/kedgeproject/kedge/pull/455) ([cdrage](https://github.com/cdrage)) +- Rename object names to better reflect consistency [\#429](https://github.com/kedgeproject/kedge/pull/429) ([cdrage](https://github.com/cdrage)) + ## [v0.5.0](https://github.com/kedgeproject/kedge/tree/v0.5.0) (2017-11-21) [Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.4.0...v0.5.0) @@ -25,6 +44,7 @@ **Merged pull requests:** +- 0.5.0 Release [\#475](https://github.com/kedgeproject/kedge/pull/475) ([cdrage](https://github.com/cdrage)) - Make ./scripts/release.sh executable [\#474](https://github.com/kedgeproject/kedge/pull/474) ([cdrage](https://github.com/cdrage)) - add BuildConfig docs and example [\#467](https://github.com/kedgeproject/kedge/pull/467) ([containscafeine](https://github.com/containscafeine)) - add BuildConfig support [\#466](https://github.com/kedgeproject/kedge/pull/466) ([containscafeine](https://github.com/containscafeine)) diff --git a/README.md b/README.md index 36af36819..80572e686 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.5.0/kedge-linux-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.1/kedge-linux-amd64 -o kedge # macOS -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.0/kedge-darwin-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.1/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.5.0/kedge-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.5.1/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 145f77300..9a540a9b8 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.5.0" + VERSION = "0.5.1" // 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 26e3eb04e..d7aa526f7 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.5.0/kedge-linux-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.1/kedge-linux-amd64 -o kedge # macOS -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.0/kedge-darwin-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.1/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.5.0/kedge-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.5.1/kedge-windows-amd64.exe) and add the binary to your PATH. #### Installing the latest binary (master) diff --git a/docs/introduction.md b/docs/introduction.md index af42acb49..5af5c43bf 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -40,16 +40,16 @@ Install Kedge with our simple binary! ```sh # Linux -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.0/kedge-linux-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.1/kedge-linux-amd64 -o kedge # macOS -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.0/kedge-darwin-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.5.1/kedge-darwin-amd64 -o kedge chmod +x kedge sudo mv ./kedge /usr/local/bin/kedge ``` -For Windows users, download from the [GitHub release](https://github.com/kedgeproject/kedge/releases/download/v0.5.0/kedge-windows-amd64.exe) and add the binary to your PATH. +For Windows users, download from the [GitHub release](https://github.com/kedgeproject/kedge/releases/download/v0.5.1/kedge-windows-amd64.exe) and add the binary to your PATH. ### Pick from an example and see what Kedge is all about