Skip to content

Commit d5c5e2e

Browse files
author
Michael Sauter
committed
Bump version to 1.3.3
1 parent ed6cd07 commit d5c5e2e

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.3.3] - 2021-12-17
6+
57
### Fixed
68

79
- Parallel execution errors out with: `Cannot stat ".combined.env"` ([#243](https://github.com/opendevstack/tailor/issues/243))

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,27 @@ The main target of Tailor is OpenShift 3.11. Tailor also works against OpenShift
2121

2222
## Installation
2323

24-
The latest release is 1.3.2 and requires oc = v3.11. OpenShift 4 is not officially supported yet although 1.3.0 is known to work with OpenShift 4.6. Note that Tailor is now considered to be feature-complete and will only receive bug fixes going forward.
24+
The latest release is 1.3.3 and requires oc = v3.11. OpenShift 4 is not officially supported yet although 1.3.0 is known to work with OpenShift 4.6. Note that Tailor is now considered to be feature-complete and will only receive bug fixes going forward.
2525
Please have a look at the [changelog](https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md) when upgrading.
2626

2727
MacOS:
2828

2929
```
30-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.2/tailor-darwin-amd64" && \
30+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.3/tailor-darwin-amd64" && \
3131
chmod +x tailor-darwin-amd64 && mv tailor-darwin-amd64 /usr/local/bin/tailor
3232
```
3333

3434
Linux:
3535

3636
```
37-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.2/tailor-linux-amd64" && \
37+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.3/tailor-linux-amd64" && \
3838
chmod +x tailor-linux-amd64 && mv tailor-linux-amd64 /usr/local/bin/tailor
3939
```
4040

4141
Windows (using Git Bash):
4242

4343
```
44-
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.2/tailor-windows-amd64.exe" && \
44+
curl -LO "https://github.com/opendevstack/tailor/releases/download/v1.3.3/tailor-windows-amd64.exe" && \
4545
chmod +x tailor-windows-amd64.exe && mv tailor-windows-amd64.exe /mingw64/bin/tailor.exe
4646
```
4747

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.3.2+master")
256+
fmt.Println("1.3.3")
257257
return
258258
}
259259

0 commit comments

Comments
 (0)