Skip to content

Commit

Permalink
Bump version 1.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Nov 10, 2021
1 parent b472045 commit d499ad4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 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.21.2",
"PackageVersion": "1.22.0",
"ConfigVersion": "0.9"
}
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down Expand Up @@ -56,7 +56,7 @@ USAGE:
scalingo-cli [global options] command [command options] [arguments...]
VERSION:
1.21.2
1.22.0
AUTHOR:
Scalingo Team <hello@scalingo.com>
Expand Down Expand Up @@ -259,12 +259,12 @@ the commit for the version bump.

```bash
git checkout <base commit ID>
git checkout -b v1.21.2
git checkout -b v1.22.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.21.2
git push --set-upstream origin v1.22.0
```

### New Version Bump
Expand All @@ -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
```

Expand All @@ -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
Expand All @@ -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.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.21.2
1.22.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.21.2"
var Version = "1.22.0"

0 comments on commit d499ad4

Please sign in to comment.