diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c96e8b0..a8e6849 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,7 +51,7 @@ jobs: extra_plugins: | @semantic-release/commit-analyzer @semantic-release/release-notes-generator - conventional-changelog-conventionalcommits + conventional-changelog-conventionalcommits@^9.3.1 @semantic-release/npm @semantic-release/git @semantic-release/github diff --git a/.releaserc.json b/.releaserc.json index 43ff8b4..a672832 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -9,13 +9,17 @@ "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, - { "type": "docs", "section": "Documentation" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "perf", "section": "Performance Improvements" }, - { "type": "refactor", "section": "Code Improvements" }, - { "type": "revert", "section": "Reverts" }, - { "type": "test", "section": "Test Improvements" }, - { "type": "chore", "scope": "deps", "section": "Dependency Updates" } + { "type": "refactor", "section": "Refactoring" }, + { "type": "chore", "scope": "deps", "section": "Dependency Updates", "hidden": false }, + { "type": "chore", "section": "Chores", "hidden": false }, + { "type": "docs", "section": "Documentation" }, + { "type": "style", "section": "Styles" }, + { "type": "test", "section": "Tests" }, + { "type": "build", "section": "Build System" }, + { "type": "ci", "section": "Continuous Integration" }, + { "type": "revert", "section": "Reverts" } ] } }