From fd6badec13e495644a68bf3a4b2b75527f4797cf Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Sun, 11 Oct 2015 17:16:30 +0100 Subject: [PATCH] v0.5.0 --- HISTORY.rst | 4 ++-- docs/source/conf.py | 4 ++-- hyper/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index a5d08f78..71ca4638 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -dev ---- +0.5.0 (2015-10-11) +------------------ *Feature Enhancement* diff --git a/docs/source/conf.py b/docs/source/conf.py index fbe86c0d..7be7d7a5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.4.0' +version = '0.5.0' # The full version, including alpha/beta/rc tags. -release = '0.4.0' +release = '0.5.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 379843f8..4153da3e 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.4.0' +__version__ = '0.5.0' from .common.connection import HTTPConnection from .http20.connection import HTTP20Connection