Skip to content

Commit 26e1069

Browse files
author
Michael Sauter
committed
Bump version to 0.10.3
1 parent 0247e62 commit 26e1069

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.10.3] - 2019-10-18
6+
57
### Fixed
68
- Avoid drift in annotations after creation of resource ([#142](https://github.com/opendevstack/tailor/issues/142))
79
- Remove legacy fields `/userNames` and `/groupNames` from `Rolebinding`

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ templates under version control. Any drift between your desired state (the YAML
1414

1515
## Installation
1616

17-
The latest release is 0.10.2 and requires oc >= v3.9.0. OpenShift 4 is not supported yet.
17+
The latest release is 0.10.3 and requires oc >= v3.9.0. OpenShift 4 is not supported yet.
1818
Please have a look at the [changelog](https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md) when upgrading.
1919

2020
MacOS:
2121

2222
```
23-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.2/tailor-darwin-amd64" && \
23+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.3/tailor-darwin-amd64" && \
2424
chmod +x tailor-darwin-amd64 && mv tailor-darwin-amd64 /usr/local/bin/tailor
2525
```
2626

2727
Linux:
2828

2929
```
30-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.2/tailor-linux-amd64" && \
30+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.3/tailor-linux-amd64" && \
3131
chmod +x tailor-linux-amd64 && mv tailor-linux-amd64 /usr/local/bin/tailor
3232
```
3333

3434
Windows (using Git Bash):
3535

3636
```
37-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.2/tailor-windows-amd64.exe" && \
37+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v0.10.3/tailor-windows-amd64.exe" && \
3838
chmod +x tailor-windows-amd64.exe && mv tailor-windows-amd64.exe /mingw64/bin/tailor.exe
3939
```
4040

cmd/tailor/main.go

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

239239
if command == versionCommand.FullCommand() {
240-
fmt.Println("0.10.2+master")
240+
fmt.Println("0.10.3")
241241
return
242242
}
243243

0 commit comments

Comments
 (0)