Skip to content

Commit

Permalink
Release 8.1: Device file type information parsing (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Apr 25, 2020
1 parent 000c503 commit b4cfb98
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
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 8.1`_ (2020-04-25)
---------------------------

- Merged `pull request #22`_ which avoids a :exc:`~exceptions.ValueError`
exception in the :func:`.inspect_package_contents()` function when a device
file entry is parsed.

- Enhanced the :func:`.inspect_package_contents()` function to properly parse
device file type information exposed via the new
:attr:`.ArchiveEntry.device_type` attribute.

- Added a regression test for device file type parsing.

.. _Release 8.1: https://github.com/xolox/python-deb-pkg-tools/compare/8.0...8.1
.. _pull request #22: https://github.com/xolox/python-deb-pkg-tools/pull/22

`Release 8.0`_ (2020-04-25)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion deb_pkg_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""

# Semi-standard module versioning.
__version__ = '8.0'
__version__ = '8.1'

debian_package_dependencies = (
'apt', # apt-get
Expand Down

0 comments on commit b4cfb98

Please sign in to comment.