diff --git a/CHANGES.rst b/CHANGES.rst index 10328a2..9b71bb8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,27 @@ Changelog ========= +0.19.0 (2018-03-24) +------------------- + +- Add additional output for the current request. [Robin Gloster] + + This is useful to have some progress indication for huge repositories. + + +- Add option to backup additional PR details. [Robin Gloster] + + Some payload is only included when requesting a single pull request + + +- Mark string as binary in comparison for skip_existing. [Johannes + Bornhold] + + Found out that the flag "--skip-existing" did not work out as expected on Python + 3.6. Tracked it down to the comparison which has to be against a string of bytes + in Python3. + + 0.18.0 (2018-02-22) ------------------- diff --git a/github_backup/__init__.py b/github_backup/__init__.py index 5ec52a9..482e4a1 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = '0.18.0' +__version__ = '0.19.0'