Skip to content

Commit

Permalink
Release 0.7: Add linux_utils.network module (network location awareness)
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Feb 9, 2020
1 parent c9fd8d2 commit 41d8905
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,30 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 0.7`_ (2020-02-09)
---------------------------

**Significant changes:**

- Added :mod:`linux_utils.network` module (simple network location awareness).

- Updated :func:`~linux_utils.fstab.parse_fstab()` documentation to reflect
difference between :attr:`~linux_utils.fstab.FileSystemEntry.device` and
:attr:`~linux_utils.fstab.FileSystemEntry.device_file`.

- Stop testing on Python 2.6, start testing on Python 3.7.

**Miscellaneous changes:**

- Improved the :func:`~linux_utils.coerce_context()` documentation.
- Improved formatting of :ref:`history` section,
removed duplication between readme and changelog.
- Start using ``:man:`...``` role in online documentation.
- Switch to Python 3 in ``Makefile`` (local development).
- Switch to console highlighting in readme.

.. _Release 0.7: https://github.com/xolox/python-linux-utils/compare/0.6...0.7

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

Expand Down
9 changes: 7 additions & 2 deletions linux_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
# Last Change: February 9, 2020
# URL: https://linux-utils.readthedocs.io

"""Linux system administration tools for Python."""
"""
Linux system administration tools for Python.
The :mod:`linux_utils` module contains generic functions
to be used by the other modules in the package.
"""

# Standard library modules.
import numbers
Expand All @@ -24,7 +29,7 @@
'coerce_size',
)

__version__ = '0.6'
__version__ = '0.7'
"""Semi-standard module versioning."""


Expand Down

0 comments on commit 41d8905

Please sign in to comment.