File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## [ 0.9.4] - 2019-04-23
6
+
5
7
### Fixed
6
8
- Do not issue removal patches when a path with an array value is ignored
7
9
- Item is not found when both name and selector is given (oc returns a single item then instead of a list).
Original file line number Diff line number Diff line change @@ -13,27 +13,27 @@ Tailor is a layer on top of the `oc` CLI command that allows you to keep your Op
13
13
14
14
## Installation
15
15
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.
17
17
Please have a look at the [ changelog] ( https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md ) when upgrading.
18
18
19
19
MacOS:
20
20
21
21
```
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" && \
23
23
mv tailor_darwin_amd64 /usr/local/bin/tailor
24
24
```
25
25
26
26
Linux:
27
27
28
28
```
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" && \
30
30
mv tailor_linux_amd64 /usr/local/bin/tailor
31
31
```
32
32
33
33
Windows (using Git Bash):
34
34
35
35
```
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" && \
37
37
mv tailor_windows_amd64.exe /mingw64/bin/tailor.exe
38
38
```
39
39
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ func main() {
207
207
command := kingpin .MustParse (app .Parse (os .Args [1 :]))
208
208
209
209
if command == versionCommand .FullCommand () {
210
- fmt .Println ("0.9.3+master " )
210
+ fmt .Println ("0.9.4 " )
211
211
return
212
212
}
213
213
You can’t perform that action at this time.
0 commit comments