From a6d1fd9854c8c40688a72f7e4b072a1e965860a0 Mon Sep 17 00:00:00 2001 From: Google GitHub Actions Bot <72759630+google-github-actions-bot@users.noreply.github.com> Date: Fri, 1 Dec 2023 15:13:51 -0500 Subject: [PATCH] chore(main): release 4.0.0 (#883) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit :robot: I have created a release *beep* *boop* --- ## [4.0.0](https://github.com/google-github-actions/release-please-action/compare/v3.7.13...v4.0.0) (2023-12-01) ### ⚠ BREAKING CHANGES * remove most configuration options in favor of manifest configuration to configure the release-please-action * rewrite in typescript * remove command option in favor of setting `release-type` and `skip-github-release`/`skip-github-pull-request` * run on node20 * **deps:** upgrade release-please to v16 * v4 release ### Features * **deps:** upgrade release-please to v16 ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) * remove command option in favor of setting `release-type` and `skip-github-release`/`skip-github-pull-request` ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) * remove most configuration options in favor of manifest configuration to configure the release-please-action ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) * run on node20 ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) * v4 release ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) ### Bug Fixes * bump release-please from 16.3.0 to 16.3.1 ([#876](https://github.com/google-github-actions/release-please-action/issues/876)) ([c9291a9](https://github.com/google-github-actions/release-please-action/commit/c9291a968c291c9576e9e82a69ac316f60b980eb)) * restore include-component-in-tag default (false) ([#888](https://github.com/google-github-actions/release-please-action/issues/888)) ([19431a1](https://github.com/google-github-actions/release-please-action/commit/19431a1126b0d092093511e4d9074add51d1e9e1)) ### Code Refactoring * rewrite in typescript ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: Jeff Ching --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a54a01e..4160710 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## [4.0.0](https://github.com/google-github-actions/release-please-action/compare/v3.7.13...v4.0.0) (2023-12-01) + + +### ⚠ BREAKING CHANGES + +* remove most configuration options in favor of manifest configuration to configure the release-please-action +* rewrite in typescript +* remove command option in favor of setting `release-type` and `skip-github-release`/`skip-github-pull-request` +* run on node20 +* **deps:** upgrade release-please to v16 +* v4 release + +### Features + +* **deps:** upgrade release-please to v16 ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) +* remove command option in favor of setting `release-type` and `skip-github-release`/`skip-github-pull-request` ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) +* remove most configuration options in favor of manifest configuration to configure the release-please-action ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) +* run on node20 ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) +* v4 release ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) + + +### Bug Fixes + +* bump release-please from 16.3.0 to 16.3.1 ([#876](https://github.com/google-github-actions/release-please-action/issues/876)) ([c9291a9](https://github.com/google-github-actions/release-please-action/commit/c9291a968c291c9576e9e82a69ac316f60b980eb)) +* restore include-component-in-tag default (false) ([#888](https://github.com/google-github-actions/release-please-action/issues/888)) ([19431a1](https://github.com/google-github-actions/release-please-action/commit/19431a1126b0d092093511e4d9074add51d1e9e1)) + + +### Code Refactoring + +* rewrite in typescript ([9cf05a0](https://github.com/google-github-actions/release-please-action/commit/9cf05a09b133475347f729dc7d17b023081cc8d3)) + ## [3.7.13](https://github.com/google-github-actions/release-please-action/compare/v3.7.12...v3.7.13) (2023-11-06) diff --git a/package-lock.json b/package-lock.json index 1bb391a..284d07d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "release-please-action", - "version": "3.7.13", + "version": "4.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "release-please-action", - "version": "3.7.13", + "version": "4.0.0", "license": "Apache-2.0", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index 1851f21..638efbf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "release-please-action", "private": true, - "version": "3.7.13", + "version": "4.0.0", "description": "automated releases based on conventional commits", "main": "index.js", "scripts": {