14
0
forked from pool/python-semver

Accepting request 802262 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/802262
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-semver?expand=0&rev=21
This commit is contained in:
Tomáš Chvátal
2020-05-09 17:30:28 +00:00
committed by Git OBS Bridge
parent d100318dbe
commit d62028be47
4 changed files with 41 additions and 8 deletions

View File

@@ -1,3 +1,37 @@
-------------------------------------------------------------------
Sat May 9 16:05:49 UTC 2020 - Arun Persaud <arun@gmx.de>
- specfile:
* updated url
* moved download url back to pypi (issue with tests not included seems resolved)
- update to version 2.10.0:
* Features
+ :pr:`138`: Added __getitem__ magic method to semver.VersionInfo
class. Allows to access a version like version[1].
+ :pr:`235`: Improved documentation and shift focus on
semver.VersionInfo instead of advertising the old and deprecated
module-level functions.
* Bug Fixes
+ :gh:`224` (:pr:`226`): In setup.py, replaced in class clean,
super(CleanCommand, self).run() with CleanCommand.run(self)
+ :gh:`244` (:pr:`245`): Allow comparison with VersionInfo,
tuple/list, dict, and string.
* Additions
+ :pr:`228`: Added better doctest integration
* Removals
+ :gh:`225` (:pr:`229`): Output a DeprecationWarning for the
following functions:
- semver.parse
- semver.parse_version_info
- semver.format_version
- semver.bump_{major,minor,patch,prerelease,build}
- semver.finalize_version
- semver.replace
- semver.VersionInfo._asdict (use the new, public available function semver.VersionInfo.to_dict())
- semver.VersionInfo._astuple (use the new, public available function semver.VersionInfo.to_tuple())
These deprecated functions will be removed in semver 3.
-------------------------------------------------------------------
Tue Feb 18 20:00:54 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>