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

Commit 3c8ae0d

Browse files
committedFeb 26, 2014
V0.0.3
1 parent b141afe commit 3c8ae0d

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed
 

‎HISTORY.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
Release 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

1522
0.0.2 (2014-02-20)
1623
------------------

‎docs/source/conf.py

+2-2
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.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.

‎hyper/__init__.py

+1-1
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.0.
88
"""
9-
__version__ = '0.0.2'
9+
__version__ = '0.0.3'
1010

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

0 commit comments

Comments
 (0)
This repository has been archived.