From 2786a266e1b0844e5c348b9356acf3ba0daa71f1 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 15 Apr 2026 15:51:06 +0000 Subject: [PATCH 1/2] 4.2.0 --- CHANGELOG.md | 9 ++++++++- package.json | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa530ae..186f322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.2.0] + +### Uncategorized + +- feat: Add option to use Oxfmt for formatting changelog ([#198](https://github.com/MetaMask/create-release-branch/pull/198)) + ## [4.1.4] ### Changed @@ -136,7 +142,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 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/v4.1.4...HEAD +[Unreleased]: https://github.com/MetaMask/create-release-branch/compare/v4.2.0...HEAD +[4.2.0]: https://github.com/MetaMask/create-release-branch/compare/v4.1.4...v4.2.0 [4.1.4]: https://github.com/MetaMask/create-release-branch/compare/v4.1.3...v4.1.4 [4.1.3]: https://github.com/MetaMask/create-release-branch/compare/v4.1.2...v4.1.3 [4.1.2]: https://github.com/MetaMask/create-release-branch/compare/v4.1.1...v4.1.2 diff --git a/package.json b/package.json index afe0ea2..a4f7f58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/create-release-branch", - "version": "4.1.4", + "version": "4.2.0", "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 c46e27fb34593e3478487700c399a62ba9d3397e Mon Sep 17 00:00:00 2001 From: Maarten Zuidhoorn Date: Wed, 15 Apr 2026 17:52:03 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 186f322..cffe2df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [4.2.0] -### Uncategorized +### Added -- feat: Add option to use Oxfmt for formatting changelog ([#198](https://github.com/MetaMask/create-release-branch/pull/198)) +- Add option to use Oxfmt for formatting changelog ([#198](https://github.com/MetaMask/create-release-branch/pull/198)) + - The CLI now accepts an optional `--formatter` option which can be set to either "oxfmt" or "prettier" (default). ## [4.1.4]