Skip to content

Commit

Permalink
Bump version 1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Jun 9, 2020
1 parent b50f48a commit a0bc5c5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"Include": "INSTALL*,README.md,LICENSE*",
"Exclude": "*.go"
},
"PackageVersion": "1.17.0",
"PackageVersion": "1.18.0",
"ConfigVersion": "0.9"
}
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

### 1.18.0

* Add log drains list command
[#560](https://github.com/Scalingo/cli/pull/560)
[go-scalingo #163](https://github.com/Scalingo/go-scalingo/pull/163)
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Scalingo-CLI v1.17.0
# Scalingo-CLI v1.18.0

[![Codeship Status for Scalingo/cli](https://app.codeship.com/projects/d3ee7f70-ac5f-0137-8f24-1ae29f023aca/status?branch=master)](https://app.codeship.com/projects/362207)

Expand Down Expand Up @@ -57,7 +57,7 @@ USAGE:
scalingo [global options] command [command options] [arguments...]
VERSION:
1.17.0
1.18.0
AUTHOR:
Scalingo Team <[email protected]>
Expand Down Expand Up @@ -237,8 +237,8 @@ SCALINGO_API_URL=http://172.17.0.1:3001 SCALINGO_AUTH_URL=http://172.17.0.1:1234

Bump new version number in:

- `.goxc.json`
- `CHANGELOG.md`
- `.goxc.json`
- `README.md`
- `VERSION`
- `config/version.go`
Expand All @@ -248,7 +248,7 @@ And commit these changes:
```bash
$ git checkout master
$ git add .
$ git commit -m "Bump version 1.17.0"
$ git commit -m "Bump version 1.18.0"
$ git push origin master
```

Expand All @@ -263,13 +263,13 @@ the commit for the version bump.

```bash
git checkout <base commit ID>
git checkout -b v1.17.1
git checkout -b v1.18.0
git cherry-pick -m 1 <commit ID number 1>
git cherry-pick -m 1 <commit ID number 2>
...
git cherry-pick -m 1 <commit ID number X>
git push --set-upstream origin v1.17.0
git tag 1.17.0
git push --set-upstream origin v1.18.0
git tag 1.18.0
git push --tags
```

Expand All @@ -278,7 +278,7 @@ git push --tags
Build the new version for all platforms with:

```sh
./dists/make-release.sh -v 1.17.0
./dists/make-release.sh -v 1.18.0
```

The script asks you for a Rollbar token available in the shared keychain under
Expand All @@ -298,5 +298,5 @@ scalingo --region agora-fr1 -a cli-download-service restart

You can now update the [changelog](https://doc.scalingo.com/changelog) and tweet about it!

> [Changelog] CLI - Release of version 1.17.0 https://cli.scalingo.com - More
> [Changelog] CLI - Release of version 1.18.0 https://cli.scalingo.com - More
> news at https://changelog.scalingo.com #cli #paas #changelog #bugfix
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.17.0
1.18.0
2 changes: 1 addition & 1 deletion config/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package config

var Version = "1.17.0"
var Version = "1.18.0"

0 comments on commit a0bc5c5

Please sign in to comment.