Skip to content

Commit

Permalink
Bump version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Jun 30, 2021
1 parent c684493 commit 938836b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## [1.3.2] - 2021-06-30

### Fixed

- Avoid panic on template with empty parameters([#238](https://github.com/opendevstack/tailor/pull/238))
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,27 @@ The main target of Tailor is OpenShift 3.11. Tailor also works against OpenShift

## Installation

The latest release is 1.3.1 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.
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.
Please have a look at the [changelog](https://github.com/opendevstack/tailor/blob/master/CHANGELOG.md) when upgrading.

MacOS:

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

Linux:

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

Windows (using Git Bash):

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

Expand Down
2 changes: 1 addition & 1 deletion cmd/tailor/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ func main() {
command := kingpin.MustParse(app.Parse(os.Args[1:]))

if command == versionCommand.FullCommand() {
fmt.Println("1.3.1+master")
fmt.Println("1.3.2")
return
}

Expand Down

0 comments on commit 938836b

Please sign in to comment.