diff --git a/CHANGELOG.md b/CHANGELOG.md index fd88808e..fc0efa1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## To Be Released +## 1.44.2 + * fix(addons): parse `maintenance-window-hour` as an int ## 1.44.1 diff --git a/README.md b/README.md index 93418766..30193c35 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Scalingo-CLI v1.44.1 +# Scalingo-CLI v1.44.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.44.1 + 1.44.2 AUTHOR: Scalingo Team @@ -276,12 +276,12 @@ the commit for the version bump. ```bash git checkout -git checkout -b v1.44.1 +git checkout -b v1.44.2 git cherry-pick -m 1 git cherry-pick -m 1 ... git cherry-pick -m 1 -git push --set-upstream origin v1.44.1 +git push --set-upstream origin v1.44.2 ``` ### New Version Bump @@ -296,7 +296,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 +326,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.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 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. diff --git a/VERSION b/VERSION index d724e439..00aecdb4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.44.1 +1.44.2 diff --git a/config/version.go b/config/version.go index d2fd46fd..9826f9a5 100644 --- a/config/version.go +++ b/config/version.go @@ -1,3 +1,3 @@ package config -var Version = "1.44.1" +var Version = "1.44.2"