You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Qube currently only allows for the versioning according to the following regex: re.match(r'(?<!\.)\d+(?:\.\d+){2}((?!.)|-SNAPSHOT)(?!.)', new_version):
The versioning check should be more relaxed and include all possibilities of semantic versioning.
Describe the solution you'd like
Include at least the alpha and beta tags in the regex for force bumping and linting to enable the use of these tags in the versioning process.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Qube currently only allows for the versioning according to the following regex:
re.match(r'(?<!\.)\d+(?:\.\d+){2}((?!.)|-SNAPSHOT)(?!.)', new_version):
The versioning check should be more relaxed and include all possibilities of semantic versioning.
Describe the solution you'd like
Include at least the alpha and beta tags in the regex for force bumping and linting to enable the use of these tags in the versioning process.
The text was updated successfully, but these errors were encountered: