Skip to content

Commit 9a1eabc

Browse files
authored
chore(3.1.1): prepare first beta release of 3.1.1 (#2123)
* chore(3.1.1): prepare first beta release of 3.1.1 * chore: do not require coverage for a compat import statement
1 parent d30c776 commit 9a1eabc

6 files changed

Lines changed: 36 additions & 4 deletions

File tree

docs/changes/3.1.1.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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>`__

docs/changes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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>

falcon/asgi/response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""ASGI Response class."""
1616
try:
1717
from asyncio.coroutines import CoroWrapper # type: ignore
18-
except ImportError:
18+
except ImportError: # pragma: nocover
1919
CoroWrapper = None # type: ignore
2020
from inspect import iscoroutine
2121
from inspect import iscoroutinefunction

falcon/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
"""Falcon version."""
1616

17-
__version__ = '3.1.0'
17+
__version__ = '3.1.1'
1818
"""Current version of Falcon."""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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]
8181
test=pytest

0 commit comments

Comments
 (0)