Skip to content

Commit 2be50fb

Browse files
committed
Release 5.3: Add --removal-command=... option (#11)
1 parent c4ae49f commit 2be50fb

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
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 5.3`_ (2018-08-03)
15+
---------------------------
16+
17+
- Merged pull request `#11`_ which introduces the ``--use-rmdir`` option with
18+
the suggested use case of removing CephFS snapshots.
19+
- Replaced ``--use-rmdir`` with ``--removal-command=rmdir`` (more general).
20+
21+
.. _Release 5.3: https://github.com/xolox/python-rotate-backups/compare/5.2...5.3
22+
.. _#11: https://github.com/xolox/python-rotate-backups/pull/11
23+
1424
`Release 5.2`_ (2018-04-27)
1525
---------------------------
1626

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: August 2, 2018
4+
# Last Change: August 3, 2018
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__ = '5.2'
46+
__version__ = '5.3'
4747

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

0 commit comments

Comments
 (0)