Skip to content

Commit f4c2f6f

Browse files
committed
Bump version 1.42.0
1 parent 04e7584 commit f4c2f6f

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22

33
## To Be Released
44

5-
* chore(deps): Bump go-scalingo to v9.0.3
5+
## 1.42.0
6+
7+
* feat(databases next generation): add firewall rules management commands:
8+
* `database-firewall-rules` - List firewall rules
9+
* `database-firewall-rules-add` - Add custom CIDR or managed range rule
10+
* `database-firewall-rules-remove` - Remove a rule
11+
* `database-firewall-managed-ranges` - List available managed ranges
612
* fix(databases next generation): reject --label flag for managed firewall rules
13+
* fix(projects): remove debug log
14+
* chore(deps): Bump go-scalingo to v9.0.3
715

816
## 1.41.1
917

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Scalingo-CLI v1.41.1
1+
# Scalingo-CLI v1.42.0
22

33
![publish workflow](https://github.com/Scalingo/cli/actions/workflows/publish.yml/badge.svg)
44

@@ -56,7 +56,7 @@ USAGE:
5656
scalingo [global options] command [command options] [arguments...]
5757
5858
VERSION:
59-
1.41.1
59+
1.42.0
6060
6161
AUTHOR:
6262
Scalingo Team <[email protected]>
@@ -276,12 +276,12 @@ the commit for the version bump.
276276

277277
```bash
278278
git checkout <base commit ID>
279-
git checkout -b v1.41.1
279+
git checkout -b v1.42.0
280280
git cherry-pick -m 1 <commit ID number 1>
281281
git cherry-pick -m 1 <commit ID number 2>
282282
...
283283
git cherry-pick -m 1 <commit ID number X>
284-
git push --set-upstream origin v1.41.1
284+
git push --set-upstream origin v1.42.0
285285
```
286286

287287
### New Version Bump
@@ -296,7 +296,7 @@ Bump new version number in:
296296
And commit these changes:
297297

298298
```bash
299-
version="1.41.1"
299+
version="1.42.0"
300300

301301
git switch --create release/${version}
302302
git add .
@@ -326,7 +326,7 @@ It serves as cache between GitHub and our customers for a more efficient check o
326326

327327
You can now update the [changelog](https://doc.scalingo.com/changelog) and tweet about it!
328328

329-
> [Changelog] CLI - Release of version 1.41.1 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix
329+
> [Changelog] CLI - Release of version 1.42.0 https://cli.scalingo.com - More news at https://changelog.scalingo.com #cli #paas #changelog #bugfix
330330
331331
Add in a tweets thread the changelog of this new version.
332-
1.41.1
332+
1.42.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.41.1
1+
1.42.0

config/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package config
22

3-
var Version = "1.41.1"
3+
var Version = "1.42.0"

0 commit comments

Comments
 (0)