Skip to content

Commit

Permalink
Release 5.0: Support pkgutil-style namespace packages
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Aug 4, 2020
1 parent 3edd7f4 commit 2816617
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 5.0`_ (2020-08-05)
---------------------------

- Added support for :mod:`pkgutil` style namespace packages. This should be
considered experimental because it hasn't seen any real world use yet.

- Explicitly documented Python compatibility in the readme (see also `#17`_,
`#18`_, `#27`_ and `#31`_) to avoid more issues being reported about Python
3.8+ not being supported.

.. _Release 5.0: https://github.com/paylogic/py2deb/compare/4.0...5.0
.. _#17: https://github.com/paylogic/py2deb/issues/17
.. _#18: https://github.com/paylogic/py2deb/issues/18
.. _#27: https://github.com/paylogic/py2deb/issues/27
.. _#31: https://github.com/paylogic/py2deb/issues/31

`Release 4.0`_ (2020-08-04)
---------------------------

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 <peter.odding@paylogic.com>
# Last Change: August 4, 2020
# Last Change: August 5, 2020
# URL: https://py2deb.readthedocs.io

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

# Semi-standard module versioning.
__version__ = '4.0'
__version__ = '5.0'

0 comments on commit 2816617

Please sign in to comment.