From 951756c152aac7819b13962e44b62a13de935d6c Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Sat, 7 Feb 2015 12:29:41 +0000 Subject: [PATCH] v0.2.0 --- HISTORY.rst | 7 +++++++ docs/source/conf.py | 4 ++-- hyper/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index bdc2fe42..08715596 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,13 @@ Release History =============== +0.2.0 (2015-02-07) +------------------ + +*Major Changes* + +- Python 2.7.9 is now fully supported. + 0.1.2 (2015-02-07) ------------------ diff --git a/docs/source/conf.py b/docs/source/conf.py index d55a1d1b..6157d4d5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.1.2' +version = '0.2.0' # The full version, including alpha/beta/rc tags. -release = '0.1.2' +release = '0.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hyper/__init__.py b/hyper/__init__.py index 24eae525..e004ad58 100644 --- a/hyper/__init__.py +++ b/hyper/__init__.py @@ -6,7 +6,7 @@ A module for providing an abstraction layer over the differences between HTTP/1.1 and HTTP/2. """ -__version__ = '0.1.2' +__version__ = '0.2.0' from .http20.connection import HTTP20Connection from .http20.response import HTTP20Response, HTTP20Push