Skip to content

Commit

Permalink
Bump version to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Mar 15, 2019
1 parent 2ba43c4 commit 33da8ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## [0.9.3] - 2019-03-15

### Fixed

- `TAILOR_NAMESPACE` detection was not working ([#100](hhttps://github.com/opendevstack/tailor/issues/100)).
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -13,27 +13,27 @@ Tailor is a layer on top of the `oc` CLI command that allows you to keep your Op

## Installation

The latest release is 0.9.2 and requires oc >= v3.9.0.
The latest release is 0.9.3 and requires oc >= v3.9.0.
Please have a look at the [changelog](https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md) when upgrading.

MacOS:

```
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.2/tailor_darwin_amd64" && \
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.3/tailor_darwin_amd64" && \
mv tailor_darwin_amd64 /usr/local/bin/tailor
```

Linux:

```
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.2/tailor_linux_amd64" && \
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.3/tailor_linux_amd64" && \
mv tailor_linux_amd64 /usr/local/bin/tailor
```

Windows (using Git Bash):

```
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.2/tailor_windows_amd64.exe" && \
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.3/tailor_windows_amd64.exe" && \
mv tailor_windows_amd64.exe /mingw64/bin/tailor.exe
```

Expand Down
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -213,7 +213,7 @@ func main() {
command := kingpin.MustParse(app.Parse(os.Args[1:]))

if command == versionCommand.FullCommand() {
fmt.Println("0.9.2+master")
fmt.Println("0.9.3")
return
}

Expand Down

0 comments on commit 33da8ac

Please sign in to comment.