From 8d2ef2f5282910e00e87422352c5e03556db1004 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 24 Mar 2018 00:54:34 -0400 Subject: [PATCH] Release version 0.19.0 --- CHANGES.rst | 21 +++++++++++++++++++++ github_backup/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) 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'