diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f3ddd595..8afeaf4f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,20 @@ ### To be Released -* chore: change default stack in help command -* feat(deployments): add Image Size to the list of deployments -* fix(backups): backup flag is not required -* build(publish): replace `rm-dist` with `clean` -* feat(review-apps): permit automatic review app deployment from forks +### 1.28.0 + +* doc: update default stack in help command ([PR#884](https://github.com/Scalingo/cli/pull/884)) +* feat(deployments): add Image Size to the list of deployments ([PR#894](https://github.com/Scalingo/cli/pull/894)) +* fix(backups): backup flag is not required ([PR#892](https://github.com/Scalingo/cli/pull/892)) +* build(publish): replace `rm-dist` with `clean` ([PR#893](https://github.com/Scalingo/cli/pull/893)) +* feat(review-apps): add an option to manage review app creation from forks ([PR#882](https://github.com/Scalingo/cli/pull/882)) +* chore(deps): update dependencies + - golang.org/x/net from 0.5.0 to 0.7.0 + - github.com/stretchr/testify from 1.8.1 to 1.8.2 + - golang.org/x/mod from 0.7.0 to 0.8.0 + - github.com/pjbgf/sha1cd from 0.2.3 to 0.3.0 + - github.com/golang-jwt/jwt/v4 from 4.4.3 to 4.5.0 + - github.com/go-git/go-billy/v5 from 5.4.0 to 5.4.1 ### 1.27.2 diff --git a/README.md b/README.md index 8838f1d23..e3235236e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Scalingo-CLI v1.27.2 +# Scalingo-CLI v1.28.0 ![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.27.2 + 1.28.0 AUTHOR: Scalingo Team @@ -84,7 +84,7 @@ COMMANDS: Alerts: alerts List the alerts of an application - alerts-add Add an alert to an application + alerts-add Add an alert to an application metric alerts-update Update an alert alerts-enable Enable an alert alerts-disable Disable an alert @@ -155,7 +155,7 @@ COMMANDS: stats Display metrics of the currently running containers Environment: - env Display the environment of your apps + env Display the environment variables of your apps env-get Get the requested environment variable from your app env-set Set the environment variables of your apps env-unset Unset environment variables of your apps @@ -198,7 +198,7 @@ COMMANDS: Notifiers: notifiers List your notifiers - notifiers-details Show details of your notifiers + notifiers-details Show details of a notifier notifiers-add Add a notifier for your application notifiers-update Update a notifier notifiers-remove Remove an existing notifier from your app @@ -230,7 +230,7 @@ GLOBAL OPTIONS: --app value, -a value Name of the app (default: "") [$SCALINGO_APP] --remote value, -r value Name of the remote (default: "scalingo") --region value Name of the region to use - --version, -v print the version (default: false) + --version, -v print the version ``` ## Development Setup diff --git a/VERSION b/VERSION index 457f03854..cfc730712 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.27.2 +1.28.0 diff --git a/config/version.go b/config/version.go index ee28a43c9..e96c30a37 100644 --- a/config/version.go +++ b/config/version.go @@ -1,3 +1,3 @@ package config -var Version = "1.27.2" +var Version = "1.28.0"