From e5aa83af7fd52e440714c40a74cf48ca3d9682b9 Mon Sep 17 00:00:00 2001 From: ZenonEl <165126589+ZenonEl@users.noreply.github.com> Date: Mon, 20 Jan 2025 21:20:19 +0400 Subject: [PATCH] feat: introduce .versionrc for version control --- .versionrc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .versionrc diff --git a/.versionrc b/.versionrc new file mode 100644 index 0000000..659101b --- /dev/null +++ b/.versionrc @@ -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 } + ] + } \ No newline at end of file