Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
0.11.0 Release (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrage authored Mar 26, 2018
1 parent ba2dad0 commit 0ff2f08
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [v0.11.0](https://github.com/kedgeproject/kedge/tree/v0.11.0) (2018-03-26)
[Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.10.0...v0.11.0)

**Closed issues:**

- Default value replacement is space sensitive [\#611](https://github.com/kedgeproject/kedge/issues/611)
- Validate the output using kubeval as part of functional tests [\#184](https://github.com/kedgeproject/kedge/issues/184)

**Merged pull requests:**

- Trim whitespaces before env lookup [\#612](https://github.com/kedgeproject/kedge/pull/612) ([surajssd](https://github.com/surajssd))

## [v0.10.0](https://github.com/kedgeproject/kedge/tree/v0.10.0) (2018-03-06)
[Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.9.0...v0.10.0)

Expand All @@ -16,6 +28,7 @@

**Merged pull requests:**

- 0.10.0 Release [\#608](https://github.com/kedgeproject/kedge/pull/608) ([cdrage](https://github.com/cdrage))
- Improve documentation on health [\#607](https://github.com/kedgeproject/kedge/pull/607) ([cdrage](https://github.com/cdrage))
- Updated JSONschema in /pkg/validation [\#600](https://github.com/kedgeproject/kedge/pull/600) ([surajnarwade](https://github.com/surajnarwade))
- Revert "Skipped validation test temporarily" [\#599](https://github.com/kedgeproject/kedge/pull/599) ([containscafeine](https://github.com/containscafeine))
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ __Linux and macOS:__

```sh
# Linux
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.10.0/kedge-linux-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-linux-amd64 -o kedge

# macOS
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.10.0/kedge-darwin-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-darwin-amd64 -o kedge

chmod +x kedge
sudo mv ./kedge /usr/local/bin/kedge
```

__Windows:__

Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.10.0/kedge-windows-amd64.exe) and add the binary to your PATH.
Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-windows-amd64.exe) and add the binary to your PATH.

A more thorough installation guide is [also available](http://kedgeproject.org/installation).

Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

var (
// VERSION is version number that will be displayed when running ./kedge version
VERSION = "0.10.0"
VERSION = "0.11.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)"
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ __Linux and macOS:__

```sh
# Linux
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.10.0/kedge-linux-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-linux-amd64 -o kedge

# macOS
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.10.0/kedge-darwin-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-darwin-amd64 -o kedge

chmod +x kedge
sudo mv ./kedge /usr/local/bin/kedge
```

__Windows:__

Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.10.0/kedge-windows-amd64.exe) and add the binary to your PATH.
Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.11.0/kedge-windows-amd64.exe) and add the binary to your PATH.


#### Installing the latest binary (master)
Expand Down

0 comments on commit 0ff2f08

Please sign in to comment.