From 9b112c7f7bdd9ec2dd3319aeadbaff7d6e2e4794 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Wed, 24 Jan 2018 10:42:47 -0500 Subject: [PATCH] 0.8.0 Release (#580) --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ README.md | 6 +++--- cmd/version.go | 2 +- docs/installation.md | 6 +++--- 4 files changed, 42 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84ec2a235..d98964101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ # Change Log +## [v0.8.0](https://github.com/kedgeproject/kedge/tree/v0.8.0) (2018-01-24) +[Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.7.0...v0.8.0) + +**Closed issues:** + +- Global labels are not propagated to Service [\#575](https://github.com/kedgeproject/kedge/issues/575) +- Lowercase "tcp" or "udp" does not work for portMappings. [\#560](https://github.com/kedgeproject/kedge/issues/560) +- Incorrect PR number in commit message [\#555](https://github.com/kedgeproject/kedge/issues/555) +- Changing structure? \(Kedge v2\) - Creating controllers section [\#541](https://github.com/kedgeproject/kedge/issues/541) +- SemaphoreCI is currently broken [\#532](https://github.com/kedgeproject/kedge/issues/532) +- Specifying default value for Kedge variable [\#491](https://github.com/kedgeproject/kedge/issues/491) +- kedge build returns - unable to create a tarball: archive/tar: write too long [\#490](https://github.com/kedgeproject/kedge/issues/490) +- add support for openshift in e2e tests [\#375](https://github.com/kedgeproject/kedge/issues/375) +- Allow specifying default values for variables [\#305](https://github.com/kedgeproject/kedge/issues/305) +- Fix roadmap document [\#235](https://github.com/kedgeproject/kedge/issues/235) +- Move `examples` to file reference. Add real examples \(GitLab, MySql, Wordpress, etc.\) [\#136](https://github.com/kedgeproject/kedge/issues/136) +- Add command line conversion tests [\#58](https://github.com/kedgeproject/kedge/issues/58) + +**Merged pull requests:** + +- Fix building docs [\#577](https://github.com/kedgeproject/kedge/pull/577) ([cdrage](https://github.com/cdrage)) +- fix global label propagation for Services [\#576](https://github.com/kedgeproject/kedge/pull/576) ([kadel](https://github.com/kadel)) +- Updates commit message for json-schema push [\#573](https://github.com/kedgeproject/kedge/pull/573) ([cdrage](https://github.com/cdrage)) +- Update website index page with new Kedge file format [\#572](https://github.com/kedgeproject/kedge/pull/572) ([cdrage](https://github.com/cdrage)) +- New Kedge structure = new documentation [\#569](https://github.com/kedgeproject/kedge/pull/569) ([cdrage](https://github.com/cdrage)) +- New Kedge file structure [\#565](https://github.com/kedgeproject/kedge/pull/565) ([kadel](https://github.com/kadel)) +- Added case for lowercase protocol [\#564](https://github.com/kedgeproject/kedge/pull/564) ([piyush1594](https://github.com/piyush1594)) +- Widget image no longer active [\#563](https://github.com/kedgeproject/kedge/pull/563) ([cdrage](https://github.com/cdrage)) +- Fix the multiple CI issues with regards to using Wordpress [\#554](https://github.com/kedgeproject/kedge/pull/554) ([cdrage](https://github.com/cdrage)) +- Fixed example [\#547](https://github.com/kedgeproject/kedge/pull/547) ([surajnarwade](https://github.com/surajnarwade)) +- Making size field optional in PVC [\#544](https://github.com/kedgeproject/kedge/pull/544) ([surajnarwade](https://github.com/surajnarwade)) +- Fixed kedge build error\(archive/tar: write too long\) [\#497](https://github.com/kedgeproject/kedge/pull/497) ([surajnarwade](https://github.com/surajnarwade)) +- Adding OpenShift tests [\#465](https://github.com/kedgeproject/kedge/pull/465) ([ashetty1](https://github.com/ashetty1)) + ## [v0.7.0](https://github.com/kedgeproject/kedge/tree/v0.7.0) (2018-01-04) [Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.6.0...v0.7.0) @@ -16,6 +50,7 @@ **Merged pull requests:** +- 0.7.0 Release [\#561](https://github.com/kedgeproject/kedge/pull/561) ([cdrage](https://github.com/cdrage)) - Remove personal email and replace with work email [\#557](https://github.com/kedgeproject/kedge/pull/557) ([containscafeine](https://github.com/containscafeine)) - Fix container image name for JSON Schema generation [\#556](https://github.com/kedgeproject/kedge/pull/556) ([containscafeine](https://github.com/containscafeine)) - Pass absolute path to JSON Schema docker command [\#553](https://github.com/kedgeproject/kedge/pull/553) ([containscafeine](https://github.com/containscafeine)) diff --git a/README.md b/README.md index b91424849..0bb9014d4 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.7.0/kedge-linux-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.8.0/kedge-linux-amd64 -o kedge # macOS -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.7.0/kedge-darwin-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.8.0/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.7.0/kedge-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.8.0/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 d8e307680..33ab096e5 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.7.0" + VERSION = "0.8.0" // 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 a0fab8d56..8368c55ae 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.7.0/kedge-linux-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.8.0/kedge-linux-amd64 -o kedge # macOS -curl -L https://github.com/kedgeproject/kedge/releases/download/v0.7.0/kedge-darwin-amd64 -o kedge +curl -L https://github.com/kedgeproject/kedge/releases/download/v0.8.0/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.7.0/kedge-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.8.0/kedge-windows-amd64.exe) and add the binary to your PATH. #### Installing the latest binary (master)