From 3e46b724138749f32b16099233a40105fb641064 Mon Sep 17 00:00:00 2001 From: Soulou Date: Tue, 21 Mar 2023 15:55:48 +0100 Subject: [PATCH] Bump version 1.28.2 --- CHANGELOG.md | 5 +++++ README.md | 20 ++++++++++---------- VERSION | 2 +- config/version.go | 2 +- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a4c226ec..4ac4f1a2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ### To be Released +### 1.28.2 + +* regression(pgsql-console|mongo-console|influx-console|redis-console): Fix regression introduced in 1.28.1, use same async mecanism #913 +* refacto(run): Improve code clarity for one-off starting operation and remove annoying extra space #912 + ### 1.28.1 * feat(one-off): start attached one-off asynchronously diff --git a/README.md b/README.md index 59f0b2fba..a10807b0a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Scalingo-CLI v1.28.1 +# Scalingo-CLI v1.28.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.28.1 + 1.28.2 AUTHOR: Scalingo Team @@ -263,12 +263,12 @@ the commit for the version bump. ```bash git checkout -git checkout -b v1.28.1 +git checkout -b v1.28.2 git cherry-pick -m 1 git cherry-pick -m 1 ... git cherry-pick -m 1 -git push --set-upstream origin v1.28.1 +git push --set-upstream origin v1.28.2 ``` ### New Version Bump @@ -283,10 +283,10 @@ Bump new version number in: And commit these changes: ```bash -git switch --create release/1.28.1 +git switch --create release/1.28.2 git add . -git commit -m "Bump version 1.28.1" -git push --set-upstream origin release/1.28.1 +git commit -m "Bump version 1.28.2" +git push --set-upstream origin release/1.28.2 gh pr create --reviewer=EtienneM --title "$(git log -1 --pretty=%B)" ``` @@ -295,8 +295,8 @@ Once the pull request merged, you can tag the new release. #### Tag the New Release ```bash -git tag 1.28.1 -git push origin master 1.28.1 +git tag 1.28.2 +git push origin master 1.28.2 ``` Pushing the tag triggers a GitHub Action which builds the cross-platform binaries and create a new release. @@ -311,6 +311,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.28.1 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix +> [Changelog] CLI - Release of version 1.28.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 450a687b2..bf4df28ef 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.28.1 +1.28.2 diff --git a/config/version.go b/config/version.go index e03644388..e2c4801f0 100644 --- a/config/version.go +++ b/config/version.go @@ -1,3 +1,3 @@ package config -var Version = "1.28.1" +var Version = "1.28.2"