Skip to content

Commit 3190e54

Browse files
committed
Release 1.1: Add --multi-fs option
1 parent 4dec7e3 commit 3190e54

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

CHANGELOG.rst

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

14+
`Release 1.1`_ (2019-08-02)
15+
---------------------------
16+
17+
- The ``--multi-fs`` option suggested in pull request `#3`_ was added.
18+
19+
This option has the opposite effect of the rsync option ``--one-file-system``
20+
because `rsync-system-backup` defaults to running rsync with
21+
``--one-file-system`` and must be instructed not to using ``--multi-fs``."
22+
23+
This change was merged by cherry picking the relevant commit from the remote
24+
branch, to avoid pulling in unrelated changes (see the pull request for
25+
details).
26+
27+
- Stop testing on Python 2.6 (because Travis CI no longer supports it and
28+
working around this would cost an unreasonable amount of time) and start
29+
testing support for Python 3.7.
30+
31+
.. _Release 1.1: https://github.com/xolox/python-rsync-system-backup/compare/1.0...1.1
32+
.. _#3: https://github.com/xolox/python-rsync-system-backup/pull/3
33+
1434
`Release 1.0`_ (2018-05-04)
1535
---------------------------
1636

rsync_system_backup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
)
4848

4949
# Semi-standard module versioning.
50-
__version__ = '1.0'
50+
__version__ = '1.1'
5151

5252
# Public identifiers that require documentation.
5353
__all__ = (

0 commit comments

Comments
 (0)