auto-semver/semver/version_type.py

8 lines
97 B
Python

from enum import IntEnum
class VersionType(IntEnum):
MAJOR = 0
MINOR = 1
PATCH = 2