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'