Skip to content

Fix #252: Correct wrong str type in docstring #253

New issue

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

Merged
merged 2 commits into from
May 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions semver.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def bump_major(self):
untouched.

:return: new object with the raised major part
:rtype: VersionInfo
:rtype: :class:`VersionInfo`

>>> ver = semver.VersionInfo.parse("3.4.5")
>>> ver.bump_major()
Expand All @@ -343,7 +343,7 @@ def bump_minor(self):
untouched.

:return: new object with the raised minor part
:rtype: VersionInfo
:rtype: :class:`VersionInfo`

>>> ver = semver.VersionInfo.parse("3.4.5")
>>> ver.bump_minor()
Expand All @@ -358,7 +358,7 @@ def bump_patch(self):
untouched.

:return: new object with the raised patch part
:rtype: VersionInfo
:rtype: :class:`VersionInfo`

>>> ver = semver.VersionInfo.parse("3.4.5")
>>> ver.bump_patch()
Expand All @@ -374,7 +374,7 @@ def bump_prerelease(self, token="rc"):

:param token: defaults to 'rc'
:return: new object with the raised prerelease part
:rtype: str
:rtype: :class:`VersionInfo`

>>> ver = semver.VersionInfo.parse("3.4.5-rc.1")
>>> ver.bump_prerelease()
Expand All @@ -392,7 +392,7 @@ def bump_build(self, token="build"):

:param token: defaults to 'build'
:return: new object with the raised build part
:rtype: str
:rtype: :class:`VersionInfo`

>>> ver = semver.VersionInfo.parse("3.4.5-rc.1+build.9")
>>> ver.bump_build()
Expand Down