From 6ca21f35fb426e80d50de35dd2f9bb9dc086d9f0 Mon Sep 17 00:00:00 2001 From: Bochun Zhang Date: Fri, 5 Aug 2016 17:55:47 -0700 Subject: [PATCH] Bump up version to 0.9.1 --- oauth2l/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oauth2l/__init__.py b/oauth2l/__init__.py index e6500078..2165370f 100644 --- a/oauth2l/__init__.py +++ b/oauth2l/__init__.py @@ -87,7 +87,7 @@ } # Keep in sync with setup.py. (Currently just used for UserAgent # tagging, so not critical.) -_OAUTH2L_VERSION = '0.9.0' +_OAUTH2L_VERSION = '0.9.1' _DEFAULT_USER_AGENT = 'oauth2l/' + _OAUTH2L_VERSION diff --git a/setup.py b/setup.py index d5f59b4a..0c3b60f4 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ raise ValueError('oauth2l requires Python 2.7 or 3.4+') # Keep in sync with oauth2l/__init__.py. -_OAUTH2L_VERSION = '0.9.0' +_OAUTH2L_VERSION = '0.9.1' with open('README.md') as fileobj: README = fileobj.read()