From 5867dc1d86a734693ffa117835f7e7358e3bced4 Mon Sep 17 00:00:00 2001 From: CURZOLA Pierre Date: Tue, 13 Feb 2024 11:38:13 +0100 Subject: [PATCH] Bump version 1.30.1 --- CHANGELOG.md | 2 ++ README.md | 12 ++++++------ VERSION | 2 +- config/version.go | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b84aedf3..39b823ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### To be Released +### 1.30.1 + * feat(addons): add aliases for database user management (i.e. using format: `database-users-`) ([PR#1031](https://github.com/Scalingo/cli/pull/1031)) * fix(login): regression two-factor token is now correctly asked again ([PR#1037](https://github.com/Scalingo/cli/pull/1037)) diff --git a/README.md b/README.md index 0f57ab8f..28bb6708 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Scalingo-CLI v1.30.0 +# Scalingo-CLI v1.30.1 ![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.0 + 1.30.1 AUTHOR: Scalingo Team @@ -263,12 +263,12 @@ the commit for the version bump. ```bash git checkout -git checkout -b v1.30.0 +git checkout -b v1.30.1 git cherry-pick -m 1 git cherry-pick -m 1 ... git cherry-pick -m 1 -git push --set-upstream origin v1.30.0 +git push --set-upstream origin v1.30.1 ``` ### New Version Bump @@ -283,7 +283,7 @@ Bump new version number in: And commit these changes: ```bash -version="1.30.0" +version="1.30.1" 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.0 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix +> [Changelog] CLI - Release of version 1.30.1 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 034552a8..7f3c3aff 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.30.0 +1.30.1 diff --git a/config/version.go b/config/version.go index 6664a599..d22d43c2 100644 --- a/config/version.go +++ b/config/version.go @@ -1,3 +1,3 @@ package config -var Version = "1.30.0" +var Version = "1.30.1"