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

Commit 05cfc21

Browse files
committed
v0.1.1
1 parent 285f2b2 commit 05cfc21

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

HISTORY.rst

+18
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Release History
22
===============
33

4+
0.1.1 (2015-02-06)
5+
------------------
6+
7+
*Minor Changes*
8+
9+
- Support for HTTP/2 draft 15, and 16. No drop of support for draft 14.
10+
- Updated bundled certificate file.
11+
12+
*Bugfixes *
13+
14+
- Fixed ``AttributeError`` being raised when a PING frame was received, thanks
15+
to @t2y. (`Issue #79`_)
16+
- Fixed bug where large frames could be incorrectly truncated by the buffered
17+
socket implementation, thanks to @t2y. (`Issue #80`_)
18+
19+
.. _Issue #79: https://github.com/Lukasa/hyper/issues/79
20+
.. _Issue #80: https://github.com/Lukasa/hyper/issues/80
21+
422
0.1.0 (2014-08-16)
523
------------------
624

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.1.0'
58+
version = '0.1.1'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '0.1.0'
60+
release = '0.1.1'
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.
88
"""
9-
__version__ = '0.1.0'
9+
__version__ = '0.1.1'
1010

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

0 commit comments

Comments
 (0)