We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
>>> from univers.versions import SemverVersion >>> SemverVersion("1.0.0-beta").next_major() SemverVersion(string='1.0.0')
>>> SemverVersion("1.0.0-beta").next_minor() SemverVersion(string='1.0.0')
>>> SemverVersion("1.0.0-beta").next_patch() SemverVersion(string='1.0.0')
This is likely a bug in python-semanticversion
This indeed is a bug see the behavior of python-semver below
>>> import semver >>> version = semver.VersionInfo.parse("1.0.0-beta") >>> str(version) '1.0.0-beta' >>> str(version.bump_major()) '2.0.0' >>> str(version.bump_minor()) '1.1.0' >>> str(version.bump_patch()) '1.0.1'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is likely a bug in python-semanticversion
Edit
This indeed is a bug see the behavior of python-semver below
The text was updated successfully, but these errors were encountered: