Skip to content

Commit

Permalink
Release 21.2: Enable selective sudo for file reading/writing
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Oct 11, 2018
1 parent fb5257a commit ce71441
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.2`_ (2018-10-11)
----------------------------

Enable ``context.read_file(..., sudo=True)`` and ``context.write_file(...,
sudo=True)``. In fact all optional keyword arguments are supported (not just
``sudo``) but for me the most important one is ``sudo=True`` because I strongly
prefer "selective ``sudo``" over "just run everything using ``sudo``".

.. _Release 21.2: https://github.com/xolox/python-executor/compare/21.1.1...21.2

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

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 8, 2018
# Last Change: October 11, 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.1'
__version__ = '21.2'

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

0 comments on commit ce71441

Please sign in to comment.