Skip to content

Commit 6a5f383

Browse files
committed
Bump version to 0.11.0
1 parent fdab133 commit 6a5f383

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

docs/source/changes.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ History of changes
55

66
.. towncrier release notes start
77
8+
v0.11.0 (2020-10-05)
9+
--------------------
10+
11+
New features:
12+
13+
* h11 now stores and makes available the raw header name as
14+
received. In addition h11 will write out header names with the same
15+
casing as passed to it. This allows compatibility with systems that
16+
expect titlecased header names. See `#31
17+
<https://github.com/python-hyper/h11/issues/31>`__.
18+
* Multiple content length headers are now merged into a single header
19+
if all the values are equal, if any are unequal a LocalProtocol
20+
error is raised (as before). See `#92
21+
<https://github.com/python-hyper/h11/issues/92>`__.
22+
23+
Backwards **in**\compatible changes:
24+
25+
* Headers added by h11, rather than passed to it, now have titlecased
26+
names. Whilst this should help compatibility it replaces the
27+
previous lowercased header names.
28+
829
v0.10.0 (2020-08-14)
930
--------------------
1031

h11/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before*
1414
# 1.0.0.)
1515

16-
__version__ = "0.10.0+dev"
16+
__version__ = "0.11.0"

0 commit comments

Comments
 (0)