diff --git a/CHANGELOG.rst b/CHANGELOG.rst index afa7540..3194f8e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,31 @@ Changelog for rbackup ===================== +Version 0.7 +----------- + +* backup script + + * Make ``backup`` strictly for backups to a local repository + * Add description for script in help message + +* Bug fixes + + * backup script + + * Fix incorrect log message handling + * Add slash between port and hostname + * Remove -v, --verbose flag + +* Documentation + + * Change all instances of ``:returns:`` in docstrings to ``:return:`` + * Make mention of default kwargs values for all modules + +* Project Structure + + * Split common logging operations into rbackup.logging module + Version 0.6 ----------- diff --git a/setup.py b/setup.py index a4ffd72..50221d5 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.6", + version="0.7", cmdclass=CMDCLASS, author="Eric Torres", author_email="erictorres4@protonmail.com",