From f32a701a6af9ced43239c79c781c8d76669c2fc8 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 8 Nov 2022 17:45:49 +0000 Subject: [PATCH 1/2] 1.0.1 --- CHANGELOG.md | 12 +++++++++++- package.json | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c71832b4..d503f081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.1] +### Uncategorized +- Update changelogs correctly for monorepo packages ([#50](https://github.com/MetaMask/create-release-branch/pull/50)) +- Update GitHub actions to match module template ([#44](https://github.com/MetaMask/create-release-branch/pull/44)) +- Update ESLint config from v9 to v10 ([#48](https://github.com/MetaMask/create-release-branch/pull/48)) +- Update TypeScript to the latest stable version ([#47](https://github.com/MetaMask/create-release-branch/pull/47)) +- Update Jest-related dependencies ([#46](https://github.com/MetaMask/create-release-branch/pull/46)) +- Fix lint error when no build is present ([#45](https://github.com/MetaMask/create-release-branch/pull/45)) + ## [1.0.0] ### Added - Initial release - In this first release, this tool only supports monorepos with an independent versioning scheme. We will add support for other kinds of projects in future releases. - You can learn more on how to use this tool by reading the [documentation](docs/). -[Unreleased]: https://github.com/MetaMask/create-release-branch/compare/v1.0.0...HEAD +[Unreleased]: https://github.com/MetaMask/create-release-branch/compare/v1.0.1...HEAD +[1.0.1]: https://github.com/MetaMask/create-release-branch/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/MetaMask/create-release-branch/releases/tag/v1.0.0 diff --git a/package.json b/package.json index aff3a8a9..aab637a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/create-release-branch", - "version": "1.0.0", + "version": "1.0.1", "description": "An interactive command-line tool to prepare a release branch by automatically bumping versions and updating changelogs for desired packages. Works for both polyrepos and monorepos.", "repository": { "type": "git", From 1c6c8c2ced84187433bf157f82c81f63128fc38f Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Tue, 8 Nov 2022 14:28:26 -0330 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d503f081..3dd33c49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [1.0.1] -### Uncategorized +### Fixed - Update changelogs correctly for monorepo packages ([#50](https://github.com/MetaMask/create-release-branch/pull/50)) -- Update GitHub actions to match module template ([#44](https://github.com/MetaMask/create-release-branch/pull/44)) -- Update ESLint config from v9 to v10 ([#48](https://github.com/MetaMask/create-release-branch/pull/48)) -- Update TypeScript to the latest stable version ([#47](https://github.com/MetaMask/create-release-branch/pull/47)) -- Update Jest-related dependencies ([#46](https://github.com/MetaMask/create-release-branch/pull/46)) -- Fix lint error when no build is present ([#45](https://github.com/MetaMask/create-release-branch/pull/45)) + - The changelog update step was encountering an error when used for a monorepo package release that had already been released at least once. Related to this, the changelog was being updated with the wrong tag links. Both problems should now be resolved. ## [1.0.0] ### Added