-
Notifications
You must be signed in to change notification settings - Fork 23
Bump version 1.44.2 #1223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump version 1.44.2 #1223
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,8 @@ | |
|
|
||
| ## To Be Released | ||
|
|
||
| ## 1.44.2 | ||
|
|
||
| * fix(addons): parse `maintenance-window-hour` as an int | ||
|
|
||
| ## 1.44.1 | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,4 +1,5 @@ | ||||
| # Scalingo-CLI v1.44.1 | ||||
| # Scalingo-CLI v1.44.2 | ||||
|
|
||||
|
|
||||
|  | ||||
|
|
||||
|
|
@@ -56,7 +57,8 @@ USAGE: | |||
| scalingo [global options] command [command options] [arguments...] | ||||
|
|
||||
| VERSION: | ||||
| 1.44.1 | ||||
| 1.44.2 | ||||
|
|
||||
|
|
||||
| AUTHOR: | ||||
| Scalingo Team <hello@scalingo.com> | ||||
|
|
@@ -276,12 +278,14 @@ the commit for the version bump. | |||
|
|
||||
| ```bash | ||||
| git checkout <base commit ID> | ||||
| git checkout -b v1.44.1 | ||||
| git checkout -b v1.44.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.44.1 | ||||
| git push --set-upstream origin v1.44.2 | ||||
|
|
||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
| ``` | ||||
|
|
||||
| ### New Version Bump | ||||
|
|
@@ -296,7 +300,7 @@ Bump new version number in: | |||
| And commit these changes: | ||||
|
|
||||
| ```bash | ||||
| version="1.44.1" | ||||
| version="1.44.2" | ||||
|
|
||||
| git switch --create release/${version} | ||||
| git add . | ||||
|
|
@@ -326,6 +330,7 @@ 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.44.1 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix | ||||
| > [Changelog] CLI - Release of version 1.44.2 | ||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is it an on purpose line break ?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oooh, missed it I introduced a line feed :/ |
||||
| 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. | ||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 1.44.1 | ||
| 1.44.2 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| package config | ||
|
|
||
| var Version = "1.44.1" | ||
| var Version = "1.44.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue: the new branch creation command is: