diff --git a/HISTORY.rst b/HISTORY.rst index c4426d56..59044dc6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -Upcoming --------- +0.2.2 (2015-04-03) +------------------ *Bugfixes* diff --git a/docs/source/conf.py b/docs/source/conf.py index 5c9dd52d..c2e7409e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.2.1' +version = '0.2.2' # The full version, including alpha/beta/rc tags. -release = '0.2.1' +release = '0.2.2' # 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 676d65b4..f86058e6 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.2.1' +__version__ = '0.2.2' from .http20.connection import HTTP20Connection from .http20.response import HTTP20Response, HTTP20Push