From c65cdb076501473dfa44095ba1331b5346a63c77 Mon Sep 17 00:00:00 2001 From: Katy Bowman Date: Tue, 7 Mar 2023 14:02:51 -0500 Subject: [PATCH] release v7.69.0 (#2263) * v7.69.0 * update changelog --- CHANGELOG.md | 14 ++++++++++++-- docs/local.md | 8 ++++---- lerna.json | 2 +- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 4 ++-- packages/local/CHANGELOG.md | 11 +++++++++++ packages/local/README.md | 10 +++++----- packages/local/package.json | 2 +- 8 files changed, 44 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2036c0da11..a18d17e49d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 diff --git a/docs/local.md b/docs/local.md index ea9a6ec12f..f83a6d2608 100644 --- a/docs/local.md +++ b/docs/local.md @@ -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` @@ -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` @@ -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)_ diff --git a/lerna.json b/lerna.json index 201f4b92b8..1fdd88f0e1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "7.68.3", + "version": "7.69.0", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 6c25a5ffcf..65b4bf2722 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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) diff --git a/packages/cli/package.json b/packages/cli/package.json index f813d2b9ed..71fcd8fd1c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -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" @@ -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", diff --git a/packages/local/CHANGELOG.md b/packages/local/CHANGELOG.md index 8498e9ac1d..8c3c5c6b6d 100644 --- a/packages/local/CHANGELOG.md +++ b/packages/local/CHANGELOG.md @@ -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) diff --git a/packages/local/README.md b/packages/local/README.md index 3316ec6dd3..5c4963b566 100644 --- a/packages/local/README.md +++ b/packages/local/README.md @@ -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 @@ -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` @@ -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` @@ -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)_ diff --git a/packages/local/package.json b/packages/local/package.json index 96eef84502..4de8187fe8 100644 --- a/packages/local/package.json +++ b/packages/local/package.json @@ -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": {