From f0b28567b9eb926a3ff931bbae497c25bfb58851 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 26 Oct 2016 14:14:00 -0600 Subject: [PATCH] Release version 0.11.0 --- CHANGES.rst | 22 +++++++++++++++++++++- github_backup/__init__.py | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) 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'