Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function formatCommit(commit: GitCommit, config: ResolvedChangelogConfig) {
return (
"- " +
(commit.scope ? `**${commit.scope.trim()}:** ` : "") +
(commit.isBreaking ? "⚠️ " : "") +
(commit.isBreaking ? "⚠️ " : "") +
Comment thread
coderabbitai[bot] marked this conversation as resolved.
upperFirst(commit.description) +
formatReferences(commit.references, config)
);
Expand Down
4 changes: 2 additions & 2 deletions test/git.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ describe("git", () => {
### 🩹 Fixes

- Consider docs and refactor as semver patch for bump ([648ccf1](https://github.com/unjs/changelogen/commit/648ccf1))
- **scope:** ⚠️ Breaking change example, close #123 ([#134](https://github.com/unjs/changelogen/pull/134), [#123](https://github.com/unjs/changelogen/issues/123))
- **scope:** ⚠️ Breaking change example, close #123 ([#134](https://github.com/unjs/changelogen/pull/134), [#123](https://github.com/unjs/changelogen/issues/123))

### 🏡 Chore

Expand All @@ -476,7 +476,7 @@ describe("git", () => {

#### ⚠️ Breaking Changes

- **scope:** ⚠️ Breaking change example, close #123 ([#134](https://github.com/unjs/changelogen/pull/134), [#123](https://github.com/unjs/changelogen/issues/123))
- **scope:** ⚠️ Breaking change example, close #123 ([#134](https://github.com/unjs/changelogen/pull/134), [#123](https://github.com/unjs/changelogen/issues/123))

### ❤️ Contributors

Expand Down