Skip to content

Commit 612fb08

Browse files
author
Michael Sauter
committed
Bump version to 1.2.0
1 parent 2ceea04 commit 612fb08

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+
## [1.2.0] - 2020-08-10
6+
57
### Added
68

79
- Handle `Job` resoures ([#212](https://github.com/opendevstack/tailor/pull/212)).

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,27 @@ If you are interested how Tailor compares to other tools such as Helm, please se
2323

2424
## Installation
2525

26-
The latest release is 1.1.4 and requires oc >= v3.9.0. OpenShift 4 is not officially supported yet although 1.0.0 and above work in principle.
26+
The latest release is 1.2.0 and requires oc >= v3.9.0. OpenShift 4 is not officially supported yet although 1.0.0 and above work in principle.
2727
Please have a look at the [changelog](https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md) when upgrading.
2828

2929
MacOS:
3030

3131
```
32-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.1.4/tailor-darwin-amd64" && \
32+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.2.0/tailor-darwin-amd64" && \
3333
chmod +x tailor-darwin-amd64 && mv tailor-darwin-amd64 /usr/local/bin/tailor
3434
```
3535

3636
Linux:
3737

3838
```
39-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.1.4/tailor-linux-amd64" && \
39+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.2.0/tailor-linux-amd64" && \
4040
chmod +x tailor-linux-amd64 && mv tailor-linux-amd64 /usr/local/bin/tailor
4141
```
4242

4343
Windows (using Git Bash):
4444

4545
```
46-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.1.4/tailor-windows-amd64.exe" && \
46+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.2.0/tailor-windows-amd64.exe" && \
4747
chmod +x tailor-windows-amd64.exe && mv tailor-windows-amd64.exe /mingw64/bin/tailor.exe
4848
```
4949

cmd/tailor/main.go

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

255255
if command == versionCommand.FullCommand() {
256-
fmt.Println("1.1.4+master")
256+
fmt.Println("1.2.0")
257257
return
258258
}
259259

0 commit comments

Comments
 (0)