Skip to content

Commit 2f9d2b5

Browse files
author
Michael Sauter
committed
Bump version to 1.1.4
1 parent eb2c29d commit 2f9d2b5

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.1.4] - 2020-07-20
6+
57
### Fixed
68

79
- Replace only whole words with `${TAILOR_NAMESPACE}` ([#211](https://github.com/opendevstack/tailor/pull/211)). Note that while this should yield better results than the previous behaviour, there might be rare situations where Tailor misses to replace the namespace now.

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.3 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.1.4 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.3/tailor-darwin-amd64" && \
32+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.1.4/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.3/tailor-linux-amd64" && \
39+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.1.4/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.3/tailor-windows-amd64.exe" && \
46+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.1.4/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
@@ -251,7 +251,7 @@ func main() {
251251
command := kingpin.MustParse(app.Parse(os.Args[1:]))
252252

253253
if command == versionCommand.FullCommand() {
254-
fmt.Println("1.1.3+master")
254+
fmt.Println("1.1.4")
255255
return
256256
}
257257

0 commit comments

Comments
 (0)