From a511bb2b496062a58da959b58da83f8103c550fc Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 14 Feb 2016 16:04:54 -0500 Subject: [PATCH] Release version 0.8.0 --- CHANGES.rst | 11 +++++++++++ github_backup/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index e74bc9e..1448922 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,17 @@ Changelog ========= +0.8.0 (2016-02-14) +------------------ + +- Don't store issues which are actually pull requests. [Enrico Tröger] + + This prevents storing pull requests twice since the Github API returns + pull requests also as issues. Those issues will be skipped but only if + retrieving pull requests is requested as well. + Closes #23. + + 0.7.0 (2016-02-02) ------------------ diff --git a/github_backup/__init__.py b/github_backup/__init__.py index a71c5c7..32a90a3 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = '0.7.0' +__version__ = '0.8.0'