CalVer for Release Drafter Recently, I wanted to use CalVer with Release Drafter. This is for a project where the SemVer approach would result in a perpetually increasing patch version number, and a practically frozen major and minor version. Unfortunately, Release Drafter has no inbuilt support for CalVer, so we've gotta calculate version numbers ourselves. functionparseVersion(version){if(!version)return;constregexp=/^v?(?<calVer>\d+\.\d+)\.(?<incremental>\d+)/iconstmatches=version.match(re...