-
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
1 parent
b63936c
commit ee64965
Showing
4 changed files
with
12 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Scalingo-CLI v1.30.1 | ||
# Scalingo-CLI v1.30.2 | ||
|
||
![publish workflow](https://github.com/Scalingo/cli/actions/workflows/publish.yml/badge.svg) | ||
|
||
|
@@ -56,7 +56,7 @@ USAGE: | |
scalingo [global options] command [command options] [arguments...] | ||
VERSION: | ||
1.30.1 | ||
1.30.2 | ||
AUTHOR: | ||
Scalingo Team <[email protected]> | ||
|
@@ -263,12 +263,12 @@ the commit for the version bump. | |
|
||
```bash | ||
git checkout <base commit ID> | ||
git checkout -b v1.30.1 | ||
git checkout -b v1.30.2 | ||
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.30.1 | ||
git push --set-upstream origin v1.30.2 | ||
``` | ||
|
||
### New Version Bump | ||
|
@@ -283,7 +283,7 @@ Bump new version number in: | |
And commit these changes: | ||
|
||
```bash | ||
version="1.30.1" | ||
version="1.30.2" | ||
|
||
git switch --create release/${version} | ||
git add . | ||
|
@@ -313,6 +313,6 @@ It serves as cache between GitHub and our customers for a more efficient check o | |
|
||
You can now update the [changelog](https://doc.scalingo.com/changelog) and tweet about it! | ||
|
||
> [Changelog] CLI - Release of version 1.30.1 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix | ||
> [Changelog] CLI - Release of version 1.30.2 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix | ||
Add in a tweets thread the changelog of this new version. |
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.30.1 | ||
1.30.2 |
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.30.1" | ||
var Version = "1.30.2" |