From 70f711ea68f7a341842dfa14b7b8629e90869bdc Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 13 Apr 2020 17:14:20 -0400 Subject: [PATCH] Release version 0.33.0 --- CHANGES.rst | 13 ++++++++++++- github_backup/__init__.py | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8d2d079..0ade7d3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,20 @@ Changelog ========= -0.32.0 (2020-04-13) +0.33.0 (2020-04-13) ------------------- ------------------------ +- Add basic API request throttling. [Enrico Tröger] + + A simple approach to throttle API requests and so keep within the rate + limits of the API. Can be enabled with "--throttle-limit" to specify + when throttling should start. + "--throttle-pause" defines the time to sleep between further API + requests. + + +0.32.0 (2020-04-13) +------------------- - Add timestamp to log messages. [Enrico Tröger] diff --git a/github_backup/__init__.py b/github_backup/__init__.py index 2ef0c52..e3d0b7b 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = '0.32.0' +__version__ = '0.33.0'