-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
||
|
@@ -57,7 +57,7 @@ USAGE: | |
scalingo [global options] command [command options] [arguments...] | ||
VERSION: | ||
1.17.0 | ||
1.18.0 | ||
AUTHOR: | ||
Scalingo Team <[email protected]> | ||
|
@@ -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` | ||
|
@@ -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 | ||
``` | ||
|
||
|
@@ -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 | ||
``` | ||
|
||
|
@@ -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 | ||
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.17.0 | ||
1.18.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |