Skip to content

Commit

Permalink
Bump version 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Sep 7, 2021
1 parent b58c70c commit 6e3ec75
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"Include": "INSTALL*,README.md,LICENSE*",
"Exclude": "*.go"
},
"PackageVersion": "1.20.2",
"PackageVersion": "1.21.0",
"ConfigVersion": "0.9"
}
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

### To be Released

### 1.21.0

* fix(backup-download): Now download the last successful backup [#663](https://github.com/Scalingo/cli/pull/663)
* fix(review-app-url): add app url in the tablewriter [#664](https://github.com/Scalingo/cli/pull/664)
* fix(review-app-url): add app url in the table [#664](https://github.com/Scalingo/cli/pull/664)
* fix(backups-download): print error on stderr if the backup status is not 'done' [#665](https://github.com/Scalingo/cli/pull/665)
* feat(command): add command `cron-tasks` to list cron tasks of an application [#670](https://github.com/Scalingo/cli/pull/670)
* fix(run): allow an equals sign (=) in environment variable values [#674](https://github.com/Scalingo/cli/pull/674)
Expand Down
27 changes: 15 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Scalingo-CLI v1.20.2
# Scalingo-CLI v1.21.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)

Expand Down Expand Up @@ -56,7 +56,7 @@ USAGE:
scalingo-cli [global options] command [command options] [arguments...]
VERSION:
1.20.2
1.21.0
AUTHOR:
Scalingo Team <hello@scalingo.com>
Expand Down Expand Up @@ -126,6 +126,9 @@ COMMANDS:
domains-remove Remove a custom domain from an application
domains-ssl Enable or disable SSL for your custom domains
Cron Tasks:
cron-tasks List the cron tasks of an application
Databases:
redis-console Run an interactive console with your Redis addon
mongo-console Run an interactive console with your MongoDB addon
Expand Down Expand Up @@ -239,8 +242,8 @@ SCALINGO_API_URL=http://172.17.0.1:3001 SCALINGO_AUTH_URL=http://172.17.0.1:1234
Get the latest version of the CLI:

```bash
$ git checkout master
$ git pull origin master
git switch master
git pull origin master
```

### (optional) Cherry Pick Commits Included in the Release
Expand All @@ -254,12 +257,12 @@ the commit for the version bump.

```bash
git checkout <base commit ID>
git checkout -b v1.20.2
git checkout -b v1.21.0
git cherry-pick -m 1 <commit ID number 1>
git cherry-pick -m 1 <commit ID number 2>
...
git cherry-pick -m 1 <commit ID number X>
git push --set-upstream origin v1.20.2
git push --set-upstream origin v1.21.0
```

### New Version Bump
Expand All @@ -275,15 +278,15 @@ Bump new version number in:
And commit these changes:

```bash
$ git add .
$ git commit -m "Bump version 1.20.2"
$ git push origin master
git add .
git commit -m "Bump version 1.21.0"
git push origin master
```

#### Tag the New Release

```bash
git tag 1.20.2
git tag 1.21.0
git push --tags
```

Expand All @@ -292,7 +295,7 @@ git push --tags
Build the new version for all platforms with:

```sh
./dists/make-release.sh -v 1.20.2 -b
./dists/make-release.sh -v 1.21.0 -b
```

Tag and release a new version on GitHub
Expand All @@ -309,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.20.2 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix
> [Changelog] CLI - Release of version 1.21.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.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.2
1.21.0
2 changes: 1 addition & 1 deletion config/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package config

var Version = "1.20.2"
var Version = "1.21.0"

0 comments on commit 6e3ec75

Please sign in to comment.