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

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Jun 21, 2015
1 parent b05c817 commit 7202f24
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ In chronological order:
- Jerome De Cuyper (@jdecuyper)

- Updated documentation and tests.
- Added support for user-provided SSLContext objects.
- Improved support for HTTP/2 error codes.
- Added support for graceful connection closure.

- Fred Thomsen (@fredthomsen)

Expand Down
27 changes: 24 additions & 3 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,37 @@
Release History
===============

dev
---
0.4.0 (2015-06-21)
------------------

*New Features*

- Support for upgrading plaintext HTTP/1.1 to plaintext HTTP/2. (`Issue 28`_)
- HTTP/1.1 and HTTP/2 abstraction layer. Don't specify what version you want to
use, just automatically get the best version the server supports!
- Support for upgrading plaintext HTTP/1.1 to plaintext HTTP/2, with thanks to
@fredthomsen! (`Issue 28`_)
- ``HTTP11Connection`` and ``HTTPConnection`` objects are now both context
managers.
- Added support for ALPN negotiation when using PyOpenSSL. (`Issue #31`_)
- Added support for user-provided SSLContext objects, with thanks to
@jdecuyper! (`Issue #8`_)
- Better support for HTTP/2 error codes, with thanks to @jdecuyper!
(`Issue #119`_)
- More gracefully close connections, with thanks to @jdecuyper! (`Issue #15`_)

*Structural Changes*

- The framing and HPACK layers were stripped out into their own libraries.

*Bugfixes*

- Properly verify hostnames when using PyOpenSSL.

.. _Issue #8: https://github.com/Lukasa/hyper/issues/8
.. _Issue #15: https://github.com/Lukasa/hyper/issues/15
.. _Issue #28: https://github.com/Lukasa/hyper/issues/28
.. _Issue #31: https://github.com/Lukasa/hyper/issues/31
.. _Issue #119: https://github.com/Lukasa/hyper/issues/119

0.3.1 (2015-04-03)
------------------
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.3.1'
version = '0.4.0'
# The full version, including alpha/beta/rc tags.
release = '0.3.1'
release = '0.4.0'

# 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.3.1'
__version__ = '0.4.0'

from .common.connection import HTTPConnection
from .http20.connection import HTTP20Connection
Expand Down

0 comments on commit 7202f24

Please sign in to comment.