Skip to content

Commit

Permalink
release v7.69.0 (heroku#2263)
Browse files Browse the repository at this point in the history
* v7.69.0

* update changelog
  • Loading branch information
k80bowman authored Mar 7, 2023
1 parent 88ff4d7 commit c65cdb0
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 15 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.69.0](https://github.com/heroku/cli/compare/v7.68.3...v7.69.0) (2023-03-07)

**Note:** Version bump only for package heroku

### Features

* **local:** change default starting port ([#2261](https://github.com/heroku/cli/issues/2261)) ([88ff4d7](https://github.com/heroku/cli/commit/88ff4d74be7da5a8683869e9b612dea9dd069dfa))





## [7.68.3](https://github.com/heroku/cli/compare/v7.68.2...v7.68.3) (2023-03-06)


Expand All @@ -14,8 +26,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline





## [7.68.2](https://github.com/heroku/cli/compare/v7.68.1...v7.68.2) (2023-02-21)

**Note:** Version bump only for package heroku
Expand Down
8 changes: 4 additions & 4 deletions docs/local.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXAMPLE
$ heroku local web=1,worker=2
```

_See code: [@heroku-cli/plugin-local](https://github.com/heroku/cli/blob/v7.68.0/src/commands/local/index.ts)_
_See code: [@heroku-cli/plugin-local](https://github.com/heroku/cli/blob/v7.69.0/src/commands/local/index.ts)_

## `heroku local:run`

Expand All @@ -45,13 +45,13 @@ USAGE
OPTIONS
-e, --env=env
-p, --port=port
-p, --port=port [default: 5001]
EXAMPLE
$ heroku local:run bin/migrate
```

_See code: [@heroku-cli/plugin-local](https://github.com/heroku/cli/blob/v7.68.0/src/commands/local/run.ts)_
_See code: [@heroku-cli/plugin-local](https://github.com/heroku/cli/blob/v7.69.0/src/commands/local/run.ts)_

## `heroku local:version`

Expand All @@ -62,4 +62,4 @@ USAGE
$ heroku local:version
```

_See code: [@heroku-cli/plugin-local](https://github.com/heroku/cli/blob/v7.68.0/src/commands/local/version.ts)_
_See code: [@heroku-cli/plugin-local](https://github.com/heroku/cli/blob/v7.69.0/src/commands/local/version.ts)_
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.68.3",
"version": "7.69.0",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.69.0](https://github.com/heroku/cli/compare/v7.68.3...v7.69.0) (2023-03-07)

**Note:** Version bump only for package heroku





## [7.68.3](https://github.com/heroku/cli/compare/v7.68.2...v7.68.3) (2023-03-06)


Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "heroku",
"description": "CLI to interact with Heroku",
"version": "7.68.3",
"version": "7.69.0",
"author": "Jeff Dickey @jdxcode",
"bin": {
"heroku": "./bin/run"
Expand All @@ -23,7 +23,7 @@
"@heroku-cli/plugin-config": "^7.68.0",
"@heroku-cli/plugin-container-registry-v5": "^7.68.0",
"@heroku-cli/plugin-git": "^7.68.0",
"@heroku-cli/plugin-local": "^7.68.0",
"@heroku-cli/plugin-local": "^7.69.0",
"@heroku-cli/plugin-oauth-v5": "^7.68.0",
"@heroku-cli/plugin-orgs-v5": "^7.68.0",
"@heroku-cli/plugin-pg-v5": "^7.68.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/local/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.69.0](https://github.com/heroku/cli/compare/v7.68.3...v7.69.0) (2023-03-07)


### Features

* **local:** change default starting port ([#2261](https://github.com/heroku/cli/issues/2261)) ([88ff4d7](https://github.com/heroku/cli/commit/88ff4d74be7da5a8683869e9b612dea9dd069dfa))





# [7.68.0](https://github.com/heroku/cli/compare/v8.0.1...v7.68.0) (2023-02-06)


Expand Down
10 changes: 5 additions & 5 deletions packages/local/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $ npm install -g @heroku-cli/plugin-local
$ heroku COMMAND
running command...
$ heroku (-v|--version|version)
@heroku-cli/plugin-local/7.68.0 darwin-x64 node-v16.19.0
@heroku-cli/plugin-local/7.69.0 darwin-arm64 node-v16.16.0
$ heroku --help [COMMAND]
USAGE
$ heroku COMMAND
Expand Down Expand Up @@ -60,7 +60,7 @@ EXAMPLE
$ heroku local web=1,worker=2
```

_See code: [src/commands/local/index.ts](https://github.com/heroku/cli/blob/v7.68.0/src/commands/local/index.ts)_
_See code: [src/commands/local/index.ts](https://github.com/heroku/cli/blob/v7.69.0/src/commands/local/index.ts)_

## `heroku local:run`

Expand All @@ -72,13 +72,13 @@ USAGE
OPTIONS
-e, --env=env
-p, --port=port
-p, --port=port [default: 5001]
EXAMPLE
$ heroku local:run bin/migrate
```

_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v7.68.0/src/commands/local/run.ts)_
_See code: [src/commands/local/run.ts](https://github.com/heroku/cli/blob/v7.69.0/src/commands/local/run.ts)_

## `heroku local:version`

Expand All @@ -89,5 +89,5 @@ USAGE
$ heroku local:version
```

_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v7.68.0/src/commands/local/version.ts)_
_See code: [src/commands/local/version.ts](https://github.com/heroku/cli/blob/v7.69.0/src/commands/local/version.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion packages/local/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@heroku-cli/plugin-local",
"description": "run heroku apps locally",
"version": "7.68.0",
"version": "7.69.0",
"author": "Chad Carbert @chadian",
"bugs": "https://github.com/heroku/cli/issues",
"dependencies": {
Expand Down

0 comments on commit c65cdb0

Please sign in to comment.