diff --git a/docs/source/changes.rst b/docs/source/changes.rst index aecdce5..98540b3 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -5,6 +5,29 @@ History of changes .. towncrier release notes start +H11 0.14.0 (2022-09-25) +----------------------- + +Features +~~~~~~~~ + +- Allow additional trailing whitespace in chunk headers for additional + compatibility with existing servers. (`#133 + `__) +- Improve the type hints for Sentinel types, which should make it + easier to type hint h11 usage. (`#151 + `__ & `#144 + `__)) + +Deprecations and Removals +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Python 3.6 support is removed. h11 now requires Python>=3.7 + including PyPy 3. Users running `pip install h11` on Python 2 will + automatically get the last Python 2-compatible version. (`#138 + `__) + + v0.13.0 (2022-01-19) -------------------- diff --git a/h11/_version.py b/h11/_version.py index 8b0bbc6..4c89113 100644 --- a/h11/_version.py +++ b/h11/_version.py @@ -13,4 +13,4 @@ # want. (Contrast with the special suffix 1.0.0.dev, which sorts *before* # 1.0.0.) -__version__ = "0.13.0+dev" +__version__ = "0.14.0" diff --git a/newsfragments/138.removal.rst b/newsfragments/138.removal.rst deleted file mode 100644 index bfa9e00..0000000 --- a/newsfragments/138.removal.rst +++ /dev/null @@ -1,3 +0,0 @@ -Python 3.6 support is removed. h11 now requires Python>=3.7 including -PyPy 3. Users running `pip install h11` on Python 2 will -automatically get the last Python 2-compatible version.