Skip to content

Commit

Permalink
Release 21.1.1: Guard against binary data in /etc/lsb-release (#10, #15)
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Oct 8, 2018
1 parent ec3d737 commit 2cee686
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -11,6 +11,16 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 21.1.1`_ (2018-10-08)
------------------------------

Bug fix of sorts: Guard against binary data in ``/etc/lsb-release`` on Travis
CI. This problem became apparent after `#10`_ triggered some new development.
Since then I created `#15`_ to track this specific issue.

.. _Release 21.1.1: https://github.com/xolox/python-executor/compare/21.1...21.1.1
.. _#15: https://github.com/xolox/python-executor/issues/10

`Release 21.1`_ (2018-10-07)
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions executor/__init__.py
Expand Up @@ -3,7 +3,7 @@
# Programmer friendly subprocess wrapper.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: October 7, 2018
# Last Change: October 8, 2018
# URL: https://executor.readthedocs.io

"""
Expand Down Expand Up @@ -68,7 +68,7 @@
from executor.process import ControllableProcess

# Semi-standard module versioning.
__version__ = '21.1'
__version__ = '21.1.1'

# Initialize a logger.
logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 2cee686

Please sign in to comment.