diff --git a/.goxc.json b/.goxc.json index b32aef330..d4bfe9f18 100644 --- a/.goxc.json +++ b/.goxc.json @@ -7,6 +7,6 @@ "Include": "INSTALL*,README.md,LICENSE*", "Exclude": "*.go" }, - "PackageVersion": "1.21.1", + "PackageVersion": "1.21.2", "ConfigVersion": "0.9" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cd66a78f5..b4c15e73a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ # Changelog ### To be Released -* feat(cron-task): Add fields to cron tasks list [#685](https://github.com/Scalingo/cli/pull/685) + +### 1.21.2 + +* feat(cron-task): add fields to cron tasks list [#685](https://github.com/Scalingo/cli/pull/685) ### 1.21.1 diff --git a/README.md b/README.md index 2807a47af..9f99ff2c2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Scalingo-CLI v1.21.1 +# Scalingo-CLI v1.21.2 [![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.1 + 1.21.2 AUTHOR: Scalingo Team @@ -257,12 +257,12 @@ the commit for the version bump. ```bash git checkout -git checkout -b v1.21.1 +git checkout -b v1.21.2 git cherry-pick -m 1 git cherry-pick -m 1 ... git cherry-pick -m 1 -git push --set-upstream origin v1.21.1 +git push --set-upstream origin v1.21.2 ``` ### New Version Bump @@ -279,14 +279,14 @@ And commit these changes: ```bash git add . -git commit -m "Bump version 1.21.1" +git commit -m "Bump version 1.21.2" git push origin master ``` #### Tag the New Release ```bash -git tag 1.21.1 +git tag 1.21.2 git push --tags ``` @@ -295,7 +295,7 @@ git push --tags Build the new version for all platforms with: ```sh -./dists/make-release.sh -v 1.21.1 -b +./dists/make-release.sh -v 1.21.2 -b ``` Tag and release a new version on GitHub @@ -312,6 +312,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.1 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix +> [Changelog] CLI - Release of version 1.21.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 284497740..0369d0b1e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.21.1 +1.21.2 diff --git a/config/version.go b/config/version.go index eaa0dd31d..021b52004 100644 --- a/config/version.go +++ b/config/version.go @@ -1,3 +1,3 @@ package config -var Version = "1.21.1" +var Version = "1.21.2"