Skip to content

Commit 1ea925a

Browse files
author
Michael Sauter
committed
Bump version to 0.9.4
1 parent 29f64c1 commit 1ea925a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## [0.9.4] - 2019-04-23
6+
57
### Fixed
68
- Do not issue removal patches when a path with an array value is ignored
79
- Item is not found when both name and selector is given (oc returns a single item then instead of a list).

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,27 @@ Tailor is a layer on top of the `oc` CLI command that allows you to keep your Op
1313

1414
## Installation
1515

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

1919
MacOS:
2020

2121
```
22-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.3/tailor_darwin_amd64" && \
22+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.4/tailor_darwin_amd64" && \
2323
mv tailor_darwin_amd64 /usr/local/bin/tailor
2424
```
2525

2626
Linux:
2727

2828
```
29-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.3/tailor_linux_amd64" && \
29+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.4/tailor_linux_amd64" && \
3030
mv tailor_linux_amd64 /usr/local/bin/tailor
3131
```
3232

3333
Windows (using Git Bash):
3434

3535
```
36-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.3/tailor_windows_amd64.exe" && \
36+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.9.4/tailor_windows_amd64.exe" && \
3737
mv tailor_windows_amd64.exe /mingw64/bin/tailor.exe
3838
```
3939

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func main() {
207207
command := kingpin.MustParse(app.Parse(os.Args[1:]))
208208

209209
if command == versionCommand.FullCommand() {
210-
fmt.Println("0.9.3+master")
210+
fmt.Println("0.9.4")
211211
return
212212
}
213213

0 commit comments

Comments
 (0)