From 930914928a479b5b750072cb6974d2eed821500a Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Wed, 8 May 2019 06:52:27 -0700 Subject: [PATCH] Bump version to 0.7.2 --- CHANGELOG.rst | 41 +++++++++++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5797cae..930492b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,47 @@ Changelog for rbackup ===================== +Version 0.7.2 +------------- + +* backup script + + * Do not log user-provided destination argument + +* rbackup.config.config_files + + * Use ternary statement for return condition + +* rbackup.plugins + + * Add exception info parameters for PackageManager.__exit__() + +* rbackup.struct.hierarchy + + * Rewrite docstrings to explain things more clearly + * Don't import os.PathLike directly into module-level namespace + * Log shutil.rmtree.avoids_symlink_attacks as a warning, not an error + +* rbackup.struct.repository + + * Docstring and comment cleanup + * Log shutil.rmtree.avoids_symlink_attacks as a warning, not an error + +* tests.test_hierarchy + + * Split tests into specifically named cases + * Do not pass kwarg in Hierarchy.cleanup() test + +* tests.test_repository + + * Split normal and special cases for Repository.create_snapshot() + * Split properties and dunder methods of Repository + +* Project Structure + + * Add remote backup script "rbackup" + * Use % formatting in all log messages over f-strings + Version 0.7.1 ------------- diff --git a/setup.py b/setup.py index 5547046..f29addf 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ with open("README.rst", "r") as fh: # ========== Package Setup ========== setuptools.setup( name="rbackup", - version="0.7.1", + version="0.7.2", cmdclass=CMDCLASS, author="Eric Torres", author_email="erictorres4@protonmail.com",