Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 542 Bytes

README.md

File metadata and controls

23 lines (22 loc) · 542 Bytes

RelGen

RelGen is a command-line tool that helps you automate version bumps and changelog creation for any of your projects by using Conventional Commits and your Git history.

{
  "preRelease": "",
  "versionPrefix": false,
  "buildMetadata": "",
  "changeSpec": [{
    "type": "^feat$",
    "bump": "MINOR",
    "category": "Features"
  }, {
    "type": "^fix$",
    "bump": "PATCH",
    "category": "Fixes"
  },{
    "type": "^build|chore|ci|docs|style|refactor|perf|test$",
    "bump": "NONE",
    "category": "Other"
  }]
}