Skip to content

Commit 1258828

Browse files
committed
v2.0.1
1 parent c53de9b commit 1258828

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

HISTORY.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Release History
22
===============
33

4+
2.0.1 (2015-11-09)
5+
------------------
6+
7+
- Fixed a bug where the Python HPACK implementation would only emit header
8+
table size changes for the total change between one header block and another,
9+
rather than for the entire sequence of changes.
10+
411
2.0.0 (2015-10-12)
512
------------------
613

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = '2.0.0'
57+
version = '2.0.1'
5858
# The full version, including alpha/beta/rc tags.
59-
release = '2.0.0'
59+
release = '2.0.1'
6060

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

hpack/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
from .hpack import Encoder, Decoder
99
from .exceptions import HPACKError, HPACKDecodingError
1010

11-
__version__ = '2.0.0'
11+
__version__ = '2.0.1'

0 commit comments

Comments
 (0)