Skip to content

Commit

Permalink
Merge pull request #308 from Scalingo/release/6.3.0
Browse files Browse the repository at this point in the history
Bump v6.3.0
  • Loading branch information
EtienneM authored Feb 17, 2023
2 parents 934360e + c62b73d commit 656b91e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 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 @@

## To Be Released

## 6.3.0

* feat(apps): add support for `hds_resource`
* feat(deployments): add support for Deployment `image_size`
* feat(events): Stack changed event
Expand Down
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 v6.1.0
# Go client for Scalingo API v6.3.0

This repository is the Go client for the [Scalingo APIs](https://developers.scalingo.com/).

Expand Down Expand Up @@ -80,11 +80,21 @@ Bump new version number in:
Commit, tag and create a new release:

```sh
version="6.3.0"

git switch --create release/${version}
git add CHANGELOG.md README.md version.go
git commit -m "Bump v6.1.0"
git tag v6.1.0
git push origin master v6.1.0
gh release create v6.1.0
git commit -m "Bump v${version}"
git push --set-upstream origin release/${version}
gh pr create --reviewer=EtienneM --title "$(git log -1 --pretty=%B)"
```

Once the pull request merged, you can tag the new release.

```sh
git tag v${version}
git push origin master v${version}
gh release create v${version}
```

The title of the release should be the version number and the text of the
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package scalingo

var Version = "6.1.0"
var Version = "6.3.0"

0 comments on commit 656b91e

Please sign in to comment.