File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ Changelog for Falcon 3.1.1
2+ ==========================
3+
4+ Summary
5+ -------
6+
7+ This is a minor point release addressing a couple of high impact bugs,
8+ and enabling the framework on the recently released CPython 3.11.
9+
10+
11+ Changes to Supported Platforms
12+ ------------------------------
13+
14+ - Falcon is now functional on CPython 3.11.
15+ Full 3.11 support (including taking care of stdlib deprecations)
16+ will be formalized in Falcon 4.0.
17+ - As with the previous release, Python 3.5 & 3.6 remain deprecated and
18+ will no longer be supported in Falcon 4.0.
19+
20+
21+ .. towncrier release notes start
22+
23+ Contributors to this Release
24+ ----------------------------
25+
26+ Many thanks to those who contributed to this bugfix release:
27+
28+ - `CaselIT <https://github.com/CaselIT >`__
29+ - `kgriffs <https://github.com/kgriffs >`__
30+ - `TBoshoven <https://github.com/TBoshoven >`__
31+ - `vytas7 <https://github.com/vytas7 >`__
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ Changelogs
33
44.. toctree ::
55
6+ 3.1.1 <3.1.1 >
67 3.1.0 <3.1.0 >
78 3.0.1 <3.0.1 >
89 3.0.0 <3.0.0 >
Original file line number Diff line number Diff line change 1515"""ASGI Response class."""
1616try :
1717 from asyncio .coroutines import CoroWrapper # type: ignore
18- except ImportError :
18+ except ImportError : # pragma: nocover
1919 CoroWrapper = None # type: ignore
2020from inspect import iscoroutine
2121from inspect import iscoroutinefunction
Original file line number Diff line number Diff line change 1414
1515"""Falcon version."""
1616
17- __version__ = '3.1.0 '
17+ __version__ = '3.1.1 '
1818"""Current version of Falcon."""
Original file line number Diff line number Diff line change 99[tool .towncrier ]
1010 package = " falcon"
1111 package_dir = " "
12- filename = " docs/changes/3.1.0 .rst"
12+ filename = " docs/changes/3.1.1 .rst"
1313 directory = " docs/_newsfragments"
1414 issue_format = " `#{issue} <https://github.com/falconry/falcon/issues/{issue}>`__"
1515
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ console_scripts =
7575
7676[egg_info]
7777# TODO replace
78- tag_build =
78+ tag_build = b1
7979
8080[aliases]
8181test =pytest
You can’t perform that action at this time.
0 commit comments