From d499ad4b25327acb64104295884a5766cc6cbb7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Michon?= Date: Wed, 10 Nov 2021 15:26:12 +0100 Subject: [PATCH] Bump version 1.22.0 --- .goxc.json | 2 +- CHANGELOG.md | 6 ++++-- README.md | 16 ++++++++-------- VERSION | 2 +- config/version.go | 2 +- 5 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.goxc.json b/.goxc.json index d4bfe9f18..32ada67b3 100644 --- a/.goxc.json +++ b/.goxc.json @@ -7,6 +7,6 @@ "Include": "INSTALL*,README.md,LICENSE*", "Exclude": "*.go" }, - "PackageVersion": "1.21.2", + "PackageVersion": "1.22.0", "ConfigVersion": "0.9" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 200f1018b..4ff5ccad3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,18 @@ ### To be Released +### 1.22.0 + * feat(logs-archives): add logs archives for addons [#694](https://github.com/Scalingo/cli/pull/694) -* fix(update): change data stream on which warning is displayed from stdout to stderr [#698](https://github.com/Scalingo/cli/pull/698) * feat(pgsql-console): add `psql-console` and `postgresql-console` aliases for `pgsql-console` command and replace duplicated commands with aliases [#693](https://github.com/Scalingo/cli/pull/693) * feat(router-logs): add command `router-logs` to enable/disable router logs on your application [#692](https://github.com/Scalingo/cli/pull/692) * feat(open): add command `open` to open app on default browser [#691](https://github.com/Scalingo/cli/pull/691) * feat(addons-info): add command `addons-info` to display information of an add-on [#689](https://github.com/Scalingo/cli/pull/689) * feat(dashboard): add command `dashboard` to open dashboard of specified app on default browser [#686](https://github.com/Scalingo/cli/pull/686) +* chore(deps): replace github.com/howeyc/gopass with golang.org/x/term [#703](https://github.com/Scalingo/cli/pull/703) +* fix(update): change data stream on which warning is displayed from stdout to stderr [#698](https://github.com/Scalingo/cli/pull/698) * build(deps): bump github.com/Scalingo/go-utils/errors from 1.0.0 to 1.1.0 [#687](https://github.com/Scalingo/cli/pull/687) * build(deps): bump github.com/Scalingo/go-utils/retry from 1.0.0 to 1.1.0 [#688](https://github.com/Scalingo/cli/pull/688) -* chore(deps): replace github.com/howeyc/gopass with golang.org/x/term ### 1.21.2 diff --git a/README.md b/README.md index 7da032e92..d1729d59e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Scalingo-CLI v1.21.2 +# Scalingo-CLI v1.22.0 [![Codeship Status for Scalingo/cli](https://app.codeship.com/projects/d3ee7f70-ac5f-0137-8f24-1ae29f023aca/status?branch=master)](https://app.codeship.com/projects/362207) @@ -56,7 +56,7 @@ USAGE: scalingo-cli [global options] command [command options] [arguments...] VERSION: - 1.21.2 + 1.22.0 AUTHOR: Scalingo Team @@ -259,12 +259,12 @@ the commit for the version bump. ```bash git checkout -git checkout -b v1.21.2 +git checkout -b v1.22.0 git cherry-pick -m 1 git cherry-pick -m 1 ... git cherry-pick -m 1 -git push --set-upstream origin v1.21.2 +git push --set-upstream origin v1.22.0 ``` ### New Version Bump @@ -281,14 +281,14 @@ And commit these changes: ```bash git add . -git commit -m "Bump version 1.21.2" +git commit -m "Bump version 1.22.0" git push origin master ``` #### Tag the New Release ```bash -git tag 1.21.2 +git tag 1.22.0 git push --tags ``` @@ -297,7 +297,7 @@ git push --tags Build the new version for all platforms with: ```sh -./dists/make-release.sh -v 1.21.2 -b +./dists/make-release.sh -v 1.22.0 -b ``` Tag and release a new version on GitHub @@ -314,6 +314,6 @@ scalingo --region osc-fr1 -a cli-download-service restart You can now update the [changelog](https://doc.scalingo.com/changelog) and tweet about it! -> [Changelog] CLI - Release of version 1.21.2 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix +> [Changelog] CLI - Release of version 1.22.0 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 0369d0b1e..57807d6d0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.21.2 +1.22.0 diff --git a/config/version.go b/config/version.go index 021b52004..5bce41a00 100644 --- a/config/version.go +++ b/config/version.go @@ -1,3 +1,3 @@ package config -var Version = "1.21.2" +var Version = "1.22.0"