From 640782c5204a623b6f0f3dc4030dec862f1fde0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Tue, 1 Sep 2026 10:29:37 -0500 Subject: [PATCH] doc: update `changelog-maker` instructions for releasing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `changelog-maker` v5 removed the `--markdown` option, docs should reflect that. Signed-off-by: Juan José Arboleda --- doc/contributing/releases.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/contributing/releases.md b/doc/contributing/releases.md index c214f8c97cc5..57bf2dc31bf8 100644 --- a/doc/contributing/releases.md +++ b/doc/contributing/releases.md @@ -460,7 +460,7 @@ Collect a formatted list of commits since the last release. Use [`changelog-maker`](https://github.com/nodejs/changelog-maker) to do this: ```bash -changelog-maker --group --markdown +changelog-maker --group --format=markdown ``` `changelog-maker` counts commits since the last tag and if the last tag @@ -468,7 +468,7 @@ in the repository was not on the current branch you may have to supply a `--start-ref` argument: ```bash -changelog-maker --group --markdown --filter-release --start-ref v1.2.2 +changelog-maker --group --format=markdown --filter-release --start-ref v1.2.2 ``` `--filter-release` will remove the release commit from the previous release.