diff --git a/CHANGES.rst b/CHANGES.rst index 75ca02d..c546a3f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,27 @@ Changelog ========= -0.10.3 (2016-08-20) +0.11.0 (2016-10-26) +------------------- + +- Support --token file:///home/user/token.txt (fixes gh-51) [Björn + Dahlgren] + +- Fix some linting. [Albert Wang] + +- Fix byte/string conversion for python 3. [Albert Wang] + +- Support python 3. [Albert Wang] + +- Encode special characters in password. [Remi Rampin] + +- Don't pretend program name is "Github Backup" [Remi Rampin] + +- Don't install over insecure connection. [Remi Rampin] + + The git:// protocol is unauthenticated and unencrypted, and no longer advertised by GitHub. Using HTTPS shouldn't impact performance. + +0.10.3 (2016-08-21) ------------------- - Fixes #29. [Jonas Michel] diff --git a/github_backup/__init__.py b/github_backup/__init__.py index 65819b8..f323a57 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = '0.10.3' +__version__ = '0.11.0'