14
0
forked from pool/python-semver

- update to version 2.13.0:

- Features:
  - :pr:`287`: Document how to create subclass from ``VersionInfo``
 - Bug Fixes:
  - :pr:`283`: Ensure equal versions have equal hashes.
    Version equality means for semver, that ``major``,
    ``minor``, ``patch``, and ``prerelease`` parts are
    equal in both versions you compare. The ``build`` part
    is ignored.
- update to version 2.12.0:
 - Bug Fixes:
  - :gh:`291` (:pr:`292`): Disallow negative numbers of
    major, minor, and patch for ``semver.VersionInfo``
- update to version 2.11.0:
 - Bug Fixes:
  - :gh:`276` (:pr:`277`): VersionInfo.parse should be a class method
     Also add authors and update changelog in :gh:`286`
  - :gh:`274` (:pr:`275`): Py2 vs. Py3 incompatibility TypeError

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-semver?expand=0&rev=27
This commit is contained in:
Sebastian Wagner
2020-10-30 11:47:16 +00:00
committed by Git OBS Bridge
parent caf61bea75
commit 294c8b94cd
4 changed files with 26 additions and 4 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Fri Oct 30 11:22:16 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>
- update to version 2.13.0:
- Features:
- :pr:`287`: Document how to create subclass from ``VersionInfo``
- Bug Fixes:
- :pr:`283`: Ensure equal versions have equal hashes.
Version equality means for semver, that ``major``,
``minor``, ``patch``, and ``prerelease`` parts are
equal in both versions you compare. The ``build`` part
is ignored.
- update to version 2.12.0:
- Bug Fixes:
- :gh:`291` (:pr:`292`): Disallow negative numbers of
major, minor, and patch for ``semver.VersionInfo``
- update to version 2.11.0:
- Bug Fixes:
- :gh:`276` (:pr:`277`): VersionInfo.parse should be a class method
Also add authors and update changelog in :gh:`286`
- :gh:`274` (:pr:`275`): Py2 vs. Py3 incompatibility TypeError
-------------------------------------------------------------------
Sun Jul 12 16:04:41 UTC 2020 - Sebastian Wagner <sebix+novell.com@sebix.at>