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

Commit 621db8a

Browse files
committed
HPACK draft 9.
1 parent 8b37b87 commit 621db8a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ X.X.X (XXXX-XX-XX)
66

77
*Major Changes*
88

9-
- Support for HPACK draft 8.
9+
- Support for HPACK draft 9.
1010
- Support for HTTP/2 draft 13.
1111
- Support for Python 2.7, thanks to the inimitable @alekstorm! (`Issue #33`_)
1212
- Support for PyPy.

docs/source/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ What version of the HTTP/2 draft specification does ``hyper`` support?
1616
----------------------------------------------------------------------
1717

1818
Currently, ``hyper`` supports version 13 of the HTTP/2 draft specification,
19-
and version 8 of the HPACK draft specification. ``hyper`` will be updated to
19+
and version 9 of the HPACK draft specification. ``hyper`` will be updated to
2020
keep up with the HTTP/2 draft specifications as they progress.
2121

2222
Does ``hyper`` support HTTP/2 flow control?

hyper/http20/hpack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Implements the HPACK header compression algorithm as detailed by the IETF.
77
8-
Implements the version dated January 9, 2014.
8+
Implements the version dated July 31, 2014.
99
"""
1010
import collections
1111
import logging
@@ -20,7 +20,7 @@
2020
log = logging.getLogger(__name__)
2121

2222
# The implementation draft of HPACK we support.
23-
DRAFT = 8
23+
DRAFT = 9
2424

2525

2626
def encode_integer(integer, prefix_bits):

0 commit comments

Comments
 (0)