Skip to content

Commit b8c1fcb

Browse files
committed
chore(release): update release notes format
1 parent 6426b8c commit b8c1fcb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Sections are shown only when they contain at least one item.
4848

4949
- `Major Changes`: `feat!` only
5050
- `Changes`: `feat`, `perf`
51-
- `Bug Fixes`: `fix`, `revert`
51+
- `Fixes`: `fix`, `revert`
5252
- `Technical`: `refactor`, `chore`, `ci`, `build`, `test`, `style`
5353
- `Documentation`: `docs`
5454
- `Other`: any subject that does not match the rules above

scripts/generate-release-notes.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { writeFileSync } from "node:fs";
66
const SECTION_ORDER = [
77
"Major Changes",
88
"Changes",
9-
"Bug Fixes",
9+
"Fixes",
1010
"Technical",
1111
"Documentation",
1212
"Other",
@@ -94,7 +94,7 @@ function classifyCommit(subject) {
9494
}
9595

9696
if (type === "fix" || type === "revert") {
97-
return { section: "Bug Fixes", text: description };
97+
return { section: "Fixes", text: description };
9898
}
9999

100100
if (TECHNICAL_TYPES.has(type)) {

0 commit comments

Comments
 (0)