From 8d1eb85fdfc57e2dc3f43964236857edd053685f Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Sat, 7 Feb 2015 11:44:27 +0000 Subject: [PATCH] v0.1.2 --- HISTORY.rst | 13 +++++++++++++ docs/source/conf.py | 4 ++-- hyper/__init__.py | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index fd5ca06a..5e5f97b8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,19 @@ Release History =============== +0.1.2 (2015-02-07) +------------------ + +*Minor Changes* + +- We now remove the ``Connection`` header if it's given to us, as that header + is not valid in HTTP/2. + +*Bugfixes* + +- Adds workaround for HTTPie to make our responses look more like urllib3 + responses. + 0.1.1 (2015-02-06) ------------------ diff --git a/docs/source/conf.py b/docs/source/conf.py index 956205a5..d55a1d1b 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.1' +version = '0.1.2' # The full version, including alpha/beta/rc tags. -release = '0.1.1' +release = '0.1.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 0ba50031..24eae525 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.1' +__version__ = '0.1.2' from .http20.connection import HTTP20Connection from .http20.response import HTTP20Response, HTTP20Push