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

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Feb 6, 2015
1 parent 285f2b2 commit 05cfc21
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Release History
===============

0.1.1 (2015-02-06)
------------------

*Minor Changes*

- Support for HTTP/2 draft 15, and 16. No drop of support for draft 14.
- Updated bundled certificate file.

*Bugfixes *
- Fixed ``AttributeError`` being raised when a PING frame was received, thanks
to @t2y. (`Issue #79`_)
- Fixed bug where large frames could be incorrectly truncated by the buffered
socket implementation, thanks to @t2y. (`Issue #80`_)

.. _Issue #79: https://github.com/Lukasa/hyper/issues/79
.. _Issue #80: https://github.com/Lukasa/hyper/issues/80

0.1.0 (2014-08-16)
------------------

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.1.0'
version = '0.1.1'
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = '0.1.1'

# 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.
"""
__version__ = '0.1.0'
__version__ = '0.1.1'

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

0 comments on commit 05cfc21

Please sign in to comment.