Skip to content

Commit

Permalink
Release 2.1: Compatibility with old version number format
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Dec 16, 2018
1 parent 55526e4 commit 5e144e4
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 2.1`_ (2018-12-16)
---------------------------

Enable optional backwards compatibility with the old version number conversion
up to :ref:`release 0.25` in which pre-release identifiers didn't receive any
special treatment.

My reason for adding this backwards compatibility now is that it will allow me
to upgrade py2deb on the build server of my employer to the latest version
without being forced to switch to the new version number format at the same
time. This simplifies the transition significantly.

.. _Release 2.1: https://github.com/paylogic/py2deb/compare/2.0...2.1

`Release 2.0`_ (2018-11-18)
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions py2deb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Authors:
# - Arjan Verwer
# - Peter Odding <[email protected]>
# Last Change: November 18, 2018
# Last Change: December 16, 2018
# URL: https://py2deb.readthedocs.io

"""
Expand All @@ -15,4 +15,4 @@
"""

# Semi-standard module versioning.
__version__ = '2.0'
__version__ = '2.1'

0 comments on commit 5e144e4

Please sign in to comment.