Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Prepare 2.13.0 release #295

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 1 commit into from
Oct 20, 2020
Merged
Show file tree
Hide file tree
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
24 changes: 23 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,32 @@ Change Log
All notable changes to this code base will be documented in this file,
in every released version.

Version 2.13.0
==============

:Released: 2020-10-20
:Maintainer: Tom Schraitle

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.


Version 2.12.0
==============

:Released:
:Released: 2020-10-19
:Maintainer: Tom Schraitle

Features
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Significant contributors
* Karol Werner <[email protected]>
* Peter Bittner <[email protected]>
* robi-wan <[email protected]>
* sbrudenell <[email protected]>
* T. Jameson Little <[email protected]>
* Tom Schraitle <[email protected]>
* Thomas Laferriere <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion semver.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
PY3 = sys.version_info[0] == 3


__version__ = "2.12.0"
__version__ = "2.13.0"
__author__ = "Kostiantyn Rybnikov"
__author_email__ = "[email protected]"
__maintainer__ = ["Sebastien Celles", "Tom Schraitle"]
Expand Down