Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 8d1eb85

Browse files
committed
v0.1.2
1 parent 783993c commit 8d1eb85

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

HISTORY.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Release History
22
===============
33

4+
0.1.2 (2015-02-07)
5+
------------------
6+
7+
*Minor Changes*
8+
9+
- We now remove the ``Connection`` header if it's given to us, as that header
10+
is not valid in HTTP/2.
11+
12+
*Bugfixes*
13+
14+
- Adds workaround for HTTPie to make our responses look more like urllib3
15+
responses.
16+
417
0.1.1 (2015-02-06)
518
------------------
619

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '0.1.1'
58+
version = '0.1.2'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '0.1.1'
60+
release = '0.1.2'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

hyper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A module for providing an abstraction layer over the differences between
77
HTTP/1.1 and HTTP/2.
88
"""
9-
__version__ = '0.1.1'
9+
__version__ = '0.1.2'
1010

1111
from .http20.connection import HTTP20Connection
1212
from .http20.response import HTTP20Response, HTTP20Push

0 commit comments

Comments
 (0)