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 +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11Release History
22===============
33
4- X.X.X (XXXX-XX-XX )
4+ 0.0.3 (2014-02-26 )
55------------------
66
77- Use bundled SSL certificates in addition to the OS ones, which have limited
88 platform availability. (`Issue #9 `_)
99- Connection objects reset to their basic state when they're closed, enabling
1010 them to be reused. Note that they may not be reused if exceptions are thrown
1111 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 `_)
1217
1318.. _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
1421
15220.0.2 (2014-02-20)
1623------------------
Original file line number Diff line number Diff line change 5555# built documents.
5656#
5757# The short X.Y version.
58- version = '0.0.2 '
58+ version = '0.0.3 '
5959# The full version, including alpha/beta/rc tags.
60- release = '0.0.2 '
60+ release = '0.0.3 '
6161
6262# The language for content autogenerated by Sphinx. Refer to documentation
6363# for a list of supported languages.
Original file line number Diff line number Diff line change 66A module for providing an abstraction layer over the differences between
77HTTP/1.1 and HTTP/2.0.
88"""
9- __version__ = '0.0.2 '
9+ __version__ = '0.0.3 '
1010
1111from .http20 .connection import HTTP20Connection
1212from .http20 .response import HTTP20Response
You can’t perform that action at this time.
0 commit comments