Skip to content

Commit

Permalink
Release 0.6.2: Improve header package detection
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Oct 24, 2018
1 parent 8877b38 commit 61563e3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 0.6.2`_ (2018-10-24)
-----------------------------

- Improve header package detection of ``debuntu-kernel-manager``: While doing
routine maintenance on the Raspberry Pi that handles DHCP and DNS in my home
network I noticed that while the package ``linux-headers-4.4.0-1096-raspi2``
was recognized the package ``linux-raspi2-headers-4.4.0-1096`` was not
suggested for removal by ``debuntu-kernel-manager``. This is now fixed.

- I've also reduced code duplication in ``debuntu-kernel-manager``. While this
isn't intended to change the behavior of the program I haven't gone to great
lengths to actually verify this, however it seems to me that only in obscure
theoretical corner cases would there be an actual observable difference in
behavior.

.. _Release 0.6.2: https://github.com/xolox/python-debuntu-tools/compare/0.6.1...0.6.2

`Release 0.6.1`_ (2018-07-03)
-----------------------------

Expand Down
4 changes: 2 additions & 2 deletions debuntu_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Debian and Ubuntu system administration tools.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: July 3, 2018
# Last Change: October 24, 2018
# URL: https://debuntu-tools.readthedocs.io

"""The top level :mod:`debuntu_tools` module."""
Expand All @@ -18,7 +18,7 @@
)

# Semi-standard module versioning.
__version__ = '0.6.1'
__version__ = '0.6.2'
"""The global version number of the `debuntu-tools` package (a string)."""

# Initialize a logger for this module.
Expand Down

0 comments on commit 61563e3

Please sign in to comment.