Skip to content

Commit 2cee686

Browse files
committed
Release 21.1.1: Guard against binary data in /etc/lsb-release (#10, #15)
1 parent ec3d737 commit 2cee686

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Diff for: CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ to `semantic versioning`_.
1111
.. _Keep a Changelog: http://keepachangelog.com/
1212
.. _semantic versioning: http://semver.org/
1313

14+
`Release 21.1.1`_ (2018-10-08)
15+
------------------------------
16+
17+
Bug fix of sorts: Guard against binary data in ``/etc/lsb-release`` on Travis
18+
CI. This problem became apparent after `#10`_ triggered some new development.
19+
Since then I created `#15`_ to track this specific issue.
20+
21+
.. _Release 21.1.1: https://github.com/xolox/python-executor/compare/21.1...21.1.1
22+
.. _#15: https://github.com/xolox/python-executor/issues/10
23+
1424
`Release 21.1`_ (2018-10-07)
1525
----------------------------
1626

Diff for: executor/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Programmer friendly subprocess wrapper.
44
#
55
# Author: Peter Odding <peter@peterodding.com>
6-
# Last Change: October 7, 2018
6+
# Last Change: October 8, 2018
77
# URL: https://executor.readthedocs.io
88

99
"""
@@ -68,7 +68,7 @@
6868
from executor.process import ControllableProcess
6969

7070
# Semi-standard module versioning.
71-
__version__ = '21.1'
71+
__version__ = '21.1.1'
7272

7373
# Initialize a logger.
7474
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)