This repository was archived by the owner on Jan 13, 2021. It is now read-only.
File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
Release History
2
2
===============
3
3
4
- X.X.X (XXXX-XX-XX )
4
+ 0.0.3 (2014-02-26 )
5
5
------------------
6
6
7
7
- Use bundled SSL certificates in addition to the OS ones, which have limited
8
8
platform availability. (`Issue #9 `_)
9
9
- Connection objects reset to their basic state when they're closed, enabling
10
10
them to be reused. Note that they may not be reused if exceptions are thrown
11
11
when they're in use: you must open a new connection in that situation.
12
+ - Connection objects are now context managers. (`Issue #13 `_)
13
+ - The ``HTTP20Adapter `` correctly reuses connections.
14
+ - Stop sending WINDOWUPDATE frames with a zero-size window increment.
15
+ - Provide basic functionality for gracelessly closing streams.
16
+ - Exhausted streams are now disposed of. (`Issue #14 `_)
12
17
13
18
.. _Issue #9 : https://github.com/Lukasa/hyper/issues/9
19
+ .. _Issue #13 : https://github.com/Lukasa/hyper/issues/13
20
+ .. _Issue #14 : https://github.com/Lukasa/hyper/issues/14
14
21
15
22
0.0.2 (2014-02-20)
16
23
------------------
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.0.2 '
58
+ version = '0.0.3 '
59
59
# The full version, including alpha/beta/rc tags.
60
- release = '0.0.2 '
60
+ release = '0.0.3 '
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.0.
8
8
"""
9
- __version__ = '0.0.2 '
9
+ __version__ = '0.0.3 '
10
10
11
11
from .http20 .connection import HTTP20Connection
12
12
from .http20 .response import HTTP20Response
You can’t perform that action at this time.
0 commit comments