Major semver update and refactor

This commit is contained in:
2023-06-30 22:53:38 -04:00
parent 22035b89e0
commit 92eb0cff39
10 changed files with 523 additions and 286 deletions

7
semver/version_type.py Normal file
View File

@ -0,0 +1,7 @@
from enum import IntEnum
class VersionType(IntEnum):
MAJOR = 0
MINOR = 1
PATCH = 2