From 1d11d62b739bf17ccb16efab89c3bb71cc6aa8c8 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 20 Aug 2016 20:45:27 -0400 Subject: [PATCH] Release version 0.10.1 --- CHANGES.rst | 13 +++++++++++++ github_backup/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 656a665..6dfceef 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,19 @@ Changelog ========= +0.10.1 (2016-08-20) +------------------- + +- Implement incremental updates. [Robert Bradshaw] + + Guarded with an --incremental flag. + + Stores the time of the last update and only downloads issue and + pull request data since this time. All other data is relatively + small (likely fetched with a single request) and so is simply + re-populated from scratch as before. + + 0.9.0 (2016-03-29) ------------------ diff --git a/github_backup/__init__.py b/github_backup/__init__.py index 9d1bb72..e754a83 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = '0.10.0' +__version__ = '0.10.1'