This repository was archived by the owner on Jan 13, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
Release History
2
2
===============
3
3
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
+
4
17
0.1.1 (2015-02-06)
5
18
------------------
6
19
Original file line number Diff line number Diff line change 55
55
# built documents.
56
56
#
57
57
# The short X.Y version.
58
- version = '0.1.1 '
58
+ version = '0.1.2 '
59
59
# The full version, including alpha/beta/rc tags.
60
- release = '0.1.1 '
60
+ release = '0.1.2 '
61
61
62
62
# The language for content autogenerated by Sphinx. Refer to documentation
63
63
# for a list of supported languages.
Original file line number Diff line number Diff line change 6
6
A module for providing an abstraction layer over the differences between
7
7
HTTP/1.1 and HTTP/2.
8
8
"""
9
- __version__ = '0.1.1 '
9
+ __version__ = '0.1.2 '
10
10
11
11
from .http20 .connection import HTTP20Connection
12
12
from .http20 .response import HTTP20Response , HTTP20Push
You can’t perform that action at this time.
0 commit comments