diff --git a/CHANGELOG.md b/CHANGELOG.md index 82681add..4f4299ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## To Be Released +## 5.2.2 + * feat(logs): add timestamp to the logs URL [#283](https://github.com/Scalingo/go-scalingo/pull/283) ## 5.2.1 diff --git a/README.md b/README.md index a3ace1d9..973c8632 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [ ![Codeship Status for Scalingo/go-scalingo](https://app.codeship.com/projects/cf518dc0-0034-0136-d6b3-5a0245e77f67/status?branch=master)](https://app.codeship.com/projects/279805) -# Go client for Scalingo API v5.2.1 +# Go client for Scalingo API v5.2.2 This repository is the Go client for the [Scalingo APIs](https://developers.scalingo.com/). @@ -81,10 +81,10 @@ Commit, tag and create a new release: ```sh git add CHANGELOG.md README.md version.go -git commit -m "Bump v5.2.1" -git tag v5.2.1 -git push origin master v5.2.1 -gh release create v5.2.1 +git commit -m "Bump v5.2.2" +git tag v5.2.2 +git push origin master v5.2.2 +gh release create v5.2.2 ``` The title of the release should be the version number and the text of the diff --git a/version.go b/version.go index 653881e1..86131b1b 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package scalingo -var Version = "5.2.1" +var Version = "5.2.2"