Skip to content

Commit 8919114

Browse files
committed
Bump and release 3.1.0
1 parent 1300507 commit 8919114

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

HISTORY.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
Release History
22
===============
33

4-
3.1.0dev0
5-
---------
4+
3.1.0 (2019-01-22)
5+
------------------
66

77
API Changes (Backward-Incompatible)
88
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99

1010
- ``h2.connection.H2Connection.data_to_send`` first and only argument ``amt``
1111
was renamed to ``amount``.
12+
- Support for Python 3.3 has been removed.
1213

1314
API Changes (Backward-Compatible)
1415
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -23,10 +24,14 @@ API Changes (Backward-Compatible)
2324
- Added ``ENABLE_CONNECT_PROTOCOL`` to ``h2.settings.SettingCodes``.
2425
- Support ``CONNECT`` requests with a ``:protocol`` pseudo header
2526
thereby supporting RFC 8441.
27+
- A limit to the number of closed streams kept in memory by the
28+
connection is applied. It can be configured by
29+
``h2.connection.H2Connection.MAX_CLOSED_STREAMS``.
2630

2731
Bugfixes
2832
~~~~~~~~
2933

34+
- Debug logging when stream_id is None is now fixed and no longer errors.
3035

3136
3.0.1 (2017-04-03)
3237
------------------

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '3.1.0'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '3.1.0dev0'
60+
release = '3.1.0'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

h2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
66
A HTTP/2 implementation.
77
"""
8-
__version__ = '3.1.0dev0'
8+
__version__ = '3.1.0'

0 commit comments

Comments
 (0)