Refactor release type

This commit is contained in:
erik 2023-02-20 16:37:30 +01:00
parent 54c3917ec2
commit 3d3b26b70e

6
release_type.py Normal file
View file

@ -0,0 +1,6 @@
class ReleaseType(Enum):
MAJOR = 0
MINOR = 1
PATCH = 2
SNAPSHOT = 3
BUMP = None