From 2efeaa75800bceed6fa888c17341584811356177 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 5 Apr 2017 11:49:49 -0400 Subject: [PATCH] Release version 0.13.0 --- CHANGES.rst | 20 ++++++++++++++++++++ github_backup/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index aac372a..284440b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,26 @@ Changelog ========= +0.13.0 (2017-04-05) +------------------- + +- Add OS check for OSX specific keychain args. [Martin O'Reilly] + + Keychain arguments are only supported on Mac OSX. + Added check for operating system so we give a + "Keychain arguments are only supported on Mac OSX" + error message rather than a "No password item matching the + provided name and account could be found in the osx keychain" + error message + + +- Add support for storing PAT in OSX keychain. [Martin O'Reilly] + + Added additional optional arguments and README guidance for storing + and accessing a Github personal access token (PAT) in the OSX + keychain + + 0.12.1 (2017-03-27) ------------------- diff --git a/github_backup/__init__.py b/github_backup/__init__.py index f8d9095..2d7893e 100644 --- a/github_backup/__init__.py +++ b/github_backup/__init__.py @@ -1 +1 @@ -__version__ = '0.12.1' +__version__ = '0.13.0'