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

Commit

Permalink
0.9.0 Release (#591)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrage authored Feb 13, 2018
1 parent 81857c6 commit 1c3d5eb
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log

## [v0.9.0](https://github.com/kedgeproject/kedge/tree/v0.9.0) (2018-02-13)
[Full Changelog](https://github.com/kedgeproject/kedge/compare/v0.8.0...v0.9.0)

**Closed issues:**

- `kedge build` failures with oc 3.7 [\#582](https://github.com/kedgeproject/kedge/issues/582)
- kedge create failures [\#579](https://github.com/kedgeproject/kedge/issues/579)
- `kedge build` doesn't allow namespace/project to be specified [\#574](https://github.com/kedgeproject/kedge/issues/574)
- VSCode integration with LSP [\#559](https://github.com/kedgeproject/kedge/issues/559)
- add support for `kedge update` [\#293](https://github.com/kedgeproject/kedge/issues/293)
- kedge should read input from stdin [\#183](https://github.com/kedgeproject/kedge/issues/183)
- CONTRIBUTING file: add developer notes explaining code layout [\#62](https://github.com/kedgeproject/kedge/issues/62)

**Merged pull requests:**

- Add capitalization to commands [\#589](https://github.com/kedgeproject/kedge/pull/589) ([cdrage](https://github.com/cdrage))
- Fixing typos [\#583](https://github.com/kedgeproject/kedge/pull/583) ([surajnarwade](https://github.com/surajnarwade))
- Fixed broken build [\#581](https://github.com/kedgeproject/kedge/pull/581) ([surajnarwade](https://github.com/surajnarwade))
- Adding namespace flag to kedge build [\#578](https://github.com/kedgeproject/kedge/pull/578) ([surajnarwade](https://github.com/surajnarwade))
- Documentation for e2e tests [\#570](https://github.com/kedgeproject/kedge/pull/570) ([ashetty1](https://github.com/ashetty1))
- Test kedgefiles from examples [\#566](https://github.com/kedgeproject/kedge/pull/566) ([surajnarwade](https://github.com/surajnarwade))
- Added validation for extra field [\#481](https://github.com/kedgeproject/kedge/pull/481) ([surajnarwade](https://github.com/surajnarwade))
- Kedge will read input from stdin [\#450](https://github.com/kedgeproject/kedge/pull/450) ([surajnarwade](https://github.com/surajnarwade))

## [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)

Expand All @@ -20,6 +44,7 @@

**Merged pull requests:**

- 0.8.0 Release [\#580](https://github.com/kedgeproject/kedge/pull/580) ([cdrage](https://github.com/cdrage))
- 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))
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.8.0/kedge-linux-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.9.0/kedge-linux-amd64 -o kedge

# macOS
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.8.0/kedge-darwin-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.9.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.8.0/kedge-windows-amd64.exe) and add the binary to your PATH.
Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.9.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.8.0"
VERSION = "0.9.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.8.0/kedge-linux-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.9.0/kedge-linux-amd64 -o kedge

# macOS
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.8.0/kedge-darwin-amd64 -o kedge
curl -L https://github.com/kedgeproject/kedge/releases/download/v0.9.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.8.0/kedge-windows-amd64.exe) and add the binary to your PATH.
Download from [GitHub](https://github.com/kedgeproject/kedge/releases/download/v0.9.0/kedge-windows-amd64.exe) and add the binary to your PATH.


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

0 comments on commit 1c3d5eb

Please sign in to comment.