From 99ab1cdb13558132ad457ad1867cc81672ac9471 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 15 Jan 2026 15:24:41 +0000 Subject: [PATCH] meta: Rename changelog category to "Internal Changes" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Simplified the "Build / dependencies / internal" category title to "Internal Changes" while keeping the 🔧 emoji. Updated both the default config and documentation to reflect this clearer naming. --- docs/src/content/docs/configuration.md | 2 +- src/utils/changelog.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/configuration.md b/docs/src/content/docs/configuration.md index 949db431..74ba66de 100644 --- a/docs/src/content/docs/configuration.md +++ b/docs/src/content/docs/configuration.md @@ -140,7 +140,7 @@ changelog: commit_patterns: - "^(?docs?(?:\\((?[^)]+)\\))?!?:\\s*)" semver: patch - - title: Build / dependencies / internal 🔧 + - title: Internal Changes 🔧 commit_patterns: - "^(?(?:build|refactor|meta|chore|ci|ref|perf)(?:\\((?[^)]+)\\))?!?:\\s*)" semver: patch diff --git a/src/utils/changelog.ts b/src/utils/changelog.ts index f73c4b48..7db742f6 100644 --- a/src/utils/changelog.ts +++ b/src/utils/changelog.ts @@ -818,7 +818,7 @@ export const DEFAULT_RELEASE_CONFIG: ReleaseConfig = { semver: 'patch', }, { - title: 'Build / dependencies / internal 🔧', + title: 'Internal Changes 🔧', commit_patterns: [ '^(?(?:build|refactor|meta|chore|ci|ref|perf)(?:\\((?[^)]+)\\))?!?:\\s*)', ],