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.11.0] - 2019-11-29
6
+
5
7
### Added
6
8
- Support cron jobs resources. See [ #155 ] ( https://github.com/opendevstack/tailor/issues ) .
7
9
Original file line number Diff line number Diff line change @@ -14,27 +14,27 @@ templates under version control. Any drift between your desired state (the YAML
14
14
15
15
## Installation
16
16
17
- The latest release is 0.10.4 and requires oc >= v3.9.0. OpenShift 4 is not supported yet.
17
+ The latest release is 0.11.0 and requires oc >= v3.9.0. OpenShift 4 is not supported yet.
18
18
Please have a look at the [ changelog] ( https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md ) when upgrading.
19
19
20
20
MacOS:
21
21
22
22
```
23
- curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.4 /tailor-darwin-amd64" && \
23
+ curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.11.0 /tailor-darwin-amd64" && \
24
24
chmod +x tailor-darwin-amd64 && mv tailor-darwin-amd64 /usr/local/bin/tailor
25
25
```
26
26
27
27
Linux:
28
28
29
29
```
30
- curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.4 /tailor-linux-amd64" && \
30
+ curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.11.0 /tailor-linux-amd64" && \
31
31
chmod +x tailor-linux-amd64 && mv tailor-linux-amd64 /usr/local/bin/tailor
32
32
```
33
33
34
34
Windows (using Git Bash):
35
35
36
36
```
37
- curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.4 /tailor-windows-amd64.exe" && \
37
+ curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.11.0 /tailor-windows-amd64.exe" && \
38
38
chmod +x tailor-windows-amd64.exe && mv tailor-windows-amd64.exe /mingw64/bin/tailor.exe
39
39
```
40
40
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ func main() {
237
237
command := kingpin .MustParse (app .Parse (os .Args [1 :]))
238
238
239
239
if command == versionCommand .FullCommand () {
240
- fmt .Println ("0.10.4+master " )
240
+ fmt .Println ("0.11.0 " )
241
241
return
242
242
}
243
243
You can’t perform that action at this time.
0 commit comments