Skip to content

Commit 06d57c4

Browse files
committed
Release 7.1: Optionally disable syslog (#20), explicitly support numeric ionice classes (#14)
1 parent 9d97fe5 commit 06d57c4

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

CHANGELOG.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,34 @@ to `semantic versioning`_.
1111
.. _Keep a Changelog: http://keepachangelog.com/
1212
.. _semantic versioning: http://semver.org/
1313

14+
`Release 7.1`_ (2020-02-13)
15+
---------------------------
16+
17+
- Make it possibly to disable system logging using ``rotate-backups
18+
--syslog=false`` (fixes `#20`_).
19+
20+
- Explicitly support numeric :man:`ionice` classes (as required by
21+
:man:`busybox` and suggested in `#14`_):
22+
23+
- This follows up on a pull request to :pypi:`executor` (a dependency of
24+
:pypi:`rotate-backups`) that was merged in 2018.
25+
26+
- Since that pull request was merged this new "feature" has been implicitly
27+
supported by :pypi:`rotate-backups` by upgrading the installed version of
28+
the :pypi:`executor` package, however this probably wasn't clear to anyone
29+
who's not a Python developer 😇.
30+
31+
- I've now merged pull request `#14`_ which adds a test to confirm that
32+
numeric :man:`ionice` classes are supported.
33+
34+
- I also bumped the :pypi:`executor` requirement and updated the usage
35+
instructions to point out that numeric :man:`ionice` classes are now
36+
supported.
37+
38+
.. _Release 7.1: https://github.com/xolox/python-rotate-backups/compare/7.0...7.1
39+
.. _#20: https://github.com/xolox/python-rotate-backups/issues/20
40+
.. _#14: https://github.com/xolox/python-rotate-backups/pull/14
41+
1442
`Release 7.0`_ (2020-02-12)
1543
---------------------------
1644

rotate_backups/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# rotate-backups: Simple command line interface for backup rotation.
22
#
33
# Author: Peter Odding <peter@peterodding.com>
4-
# Last Change: February 12, 2020
4+
# Last Change: February 13, 2020
55
# URL: https://github.com/xolox/python-rotate-backups
66

77
"""
@@ -43,7 +43,7 @@
4343
from verboselogs import VerboseLogger
4444

4545
# Semi-standard module versioning.
46-
__version__ = '7.0'
46+
__version__ = '7.1'
4747

4848
# Initialize a logger for this module.
4949
logger = VerboseLogger(__name__)

0 commit comments

Comments
 (0)