Major semver update and refactor
This commit is contained in:
7
semver/version_type.py
Normal file
7
semver/version_type.py
Normal file
@ -0,0 +1,7 @@
|
||||
from enum import IntEnum
|
||||
|
||||
|
||||
class VersionType(IntEnum):
|
||||
MAJOR = 0
|
||||
MINOR = 1
|
||||
PATCH = 2
|
Reference in New Issue
Block a user