Skip to content

Commit

Permalink
Release 7.1: Optionally disable syslog (#20), explicitly support nume…
Browse files Browse the repository at this point in the history
…ric ionice classes (#14)
  • Loading branch information
xolox committed Feb 13, 2020
1 parent 9d97fe5 commit 06d57c4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,34 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 7.1`_ (2020-02-13)
---------------------------

- Make it possibly to disable system logging using ``rotate-backups
--syslog=false`` (fixes `#20`_).

- Explicitly support numeric :man:`ionice` classes (as required by
:man:`busybox` and suggested in `#14`_):

- This follows up on a pull request to :pypi:`executor` (a dependency of
:pypi:`rotate-backups`) that was merged in 2018.

- Since that pull request was merged this new "feature" has been implicitly
supported by :pypi:`rotate-backups` by upgrading the installed version of
the :pypi:`executor` package, however this probably wasn't clear to anyone
who's not a Python developer 😇.

- I've now merged pull request `#14`_ which adds a test to confirm that
numeric :man:`ionice` classes are supported.

- I also bumped the :pypi:`executor` requirement and updated the usage
instructions to point out that numeric :man:`ionice` classes are now
supported.

.. _Release 7.1: https://github.com/xolox/python-rotate-backups/compare/7.0...7.1
.. _#20: https://github.com/xolox/python-rotate-backups/issues/20
.. _#14: https://github.com/xolox/python-rotate-backups/pull/14

`Release 7.0`_ (2020-02-12)
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions rotate_backups/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rotate-backups: Simple command line interface for backup rotation.
#
# Author: Peter Odding <[email protected]>
# Last Change: February 12, 2020
# Last Change: February 13, 2020
# URL: https://github.com/xolox/python-rotate-backups

"""
Expand Down Expand Up @@ -43,7 +43,7 @@
from verboselogs import VerboseLogger

# Semi-standard module versioning.
__version__ = '7.0'
__version__ = '7.1'

# Initialize a logger for this module.
logger = VerboseLogger(__name__)
Expand Down

0 comments on commit 06d57c4

Please sign in to comment.