Skip to content

Commit

Permalink
feat: introduce .versionrc for version control
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenonEl committed Jan 20, 2025
1 parent 40d9f76 commit e5aa83a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .versionrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"types": [
{ "type": "feat", "section": "Features", "bump": "minor" },
{ "type": "feat!", "section": "Breaking Changes", "bump": "major" },
{ "type": "fix", "section": "Bug Fixes", "bump": "patch" },
{ "type": "fix!", "section": "Breaking Changes", "bump": "major" },
{ "type": "refactor", "section": "Refactoring", "bump": "patch" },
{ "type": "refactor!", "section": "Breaking Changes", "bump": "major" },
{ "type": "docs", "section": "Documentation", "bump": null },
{ "type": "chore", "hidden": true, "bump": null },
{ "type": "style", "hidden": true, "bump": null },
{ "type": "test", "hidden": true, "bump": null }
]
}

0 comments on commit e5aa83a

Please sign in to comment.