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

Commit

Permalink
V0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Feb 26, 2014
1 parent b141afe commit 3c8ae0d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
Release History
===============

X.X.X (XXXX-XX-XX)
0.0.3 (2014-02-26)
------------------

- Use bundled SSL certificates in addition to the OS ones, which have limited
platform availability. (`Issue #9`_)
- Connection objects reset to their basic state when they're closed, enabling
them to be reused. Note that they may not be reused if exceptions are thrown
when they're in use: you must open a new connection in that situation.
- Connection objects are now context managers. (`Issue #13`_)
- The ``HTTP20Adapter`` correctly reuses connections.
- Stop sending WINDOWUPDATE frames with a zero-size window increment.
- Provide basic functionality for gracelessly closing streams.
- Exhausted streams are now disposed of. (`Issue #14`_)

.. _Issue #9: https://github.com/Lukasa/hyper/issues/9
.. _Issue #13: https://github.com/Lukasa/hyper/issues/13
.. _Issue #14: https://github.com/Lukasa/hyper/issues/14

0.0.2 (2014-02-20)
------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '0.0.2'
version = '0.0.3'
# The full version, including alpha/beta/rc tags.
release = '0.0.2'
release = '0.0.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion hyper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
A module for providing an abstraction layer over the differences between
HTTP/1.1 and HTTP/2.0.
"""
__version__ = '0.0.2'
__version__ = '0.0.3'

from .http20.connection import HTTP20Connection
from .http20.response import HTTP20Response
Expand Down

0 comments on commit 3c8ae0d

Please sign in to comment.