From 772d2add727ae029432fe1e8cf3fbe9357e30d7b Mon Sep 17 00:00:00 2001 From: Bryce Boe Date: Sat, 11 Mar 2017 16:57:23 -0800 Subject: [PATCH] Bump to 0.9.0 --- CHANGES.rst | 8 ++++---- prawcore/const.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e47d39f..24b9c16 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,12 +4,12 @@ Change Log prawcore follows `semantic versioning `_ with the exception that deprecations will not be announced by a minor release. -Unreleased ----------- - +0.9.0 (2017-03-11) +------------------ + **Added** -* Add ``session`` parameter to Requestor to ease support of custom sessions +* Add ``session`` parameter to Requestor to ease support of custom sessions (e.g. caching or mock ones). 0.8.0 (2017-01-29) diff --git a/prawcore/const.py b/prawcore/const.py index 6ef8b76..6bddf99 100644 --- a/prawcore/const.py +++ b/prawcore/const.py @@ -1,7 +1,7 @@ """Constants for the prawcore package.""" import os -__version__ = '0.8.0' +__version__ = '0.9.0' ACCESS_TOKEN_PATH = '/api/v1/access_token' AUTHORIZATION_PATH = '/api/v1/authorize'