Skip to content

Commit

Permalink
chore(3.1.1): prepare first beta release of 3.1.1 (#2123)
Browse files Browse the repository at this point in the history
* chore(3.1.1): prepare first beta release of 3.1.1

* chore: do not require coverage for a compat import statement
  • Loading branch information
vytas7 committed Nov 8, 2022
1 parent d30c776 commit 9a1eabc
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 4 deletions.
31 changes: 31 additions & 0 deletions docs/changes/3.1.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Changelog for Falcon 3.1.1
==========================

Summary
-------

This is a minor point release addressing a couple of high impact bugs,
and enabling the framework on the recently released CPython 3.11.


Changes to Supported Platforms
------------------------------

- Falcon is now functional on CPython 3.11.
Full 3.11 support (including taking care of stdlib deprecations)
will be formalized in Falcon 4.0.
- As with the previous release, Python 3.5 & 3.6 remain deprecated and
will no longer be supported in Falcon 4.0.


.. towncrier release notes start
Contributors to this Release
----------------------------

Many thanks to those who contributed to this bugfix release:

- `CaselIT <https://github.com/CaselIT>`__
- `kgriffs <https://github.com/kgriffs>`__
- `TBoshoven <https://github.com/TBoshoven>`__
- `vytas7 <https://github.com/vytas7>`__
1 change: 1 addition & 0 deletions docs/changes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelogs

.. toctree::

3.1.1 <3.1.1>
3.1.0 <3.1.0>
3.0.1 <3.0.1>
3.0.0 <3.0.0>
Expand Down
2 changes: 1 addition & 1 deletion falcon/asgi/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""ASGI Response class."""
try:
from asyncio.coroutines import CoroWrapper # type: ignore
except ImportError:
except ImportError: # pragma: nocover
CoroWrapper = None # type: ignore
from inspect import iscoroutine
from inspect import iscoroutinefunction
Expand Down
2 changes: 1 addition & 1 deletion falcon/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

"""Falcon version."""

__version__ = '3.1.0'
__version__ = '3.1.1'
"""Current version of Falcon."""
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[tool.towncrier]
package = "falcon"
package_dir = ""
filename = "docs/changes/3.1.0.rst"
filename = "docs/changes/3.1.1.rst"
directory = "docs/_newsfragments"
issue_format = "`#{issue} <https://github.com/falconry/falcon/issues/{issue}>`__"

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ console_scripts =

[egg_info]
# TODO replace
tag_build =
tag_build = b1

[aliases]
test=pytest
Expand Down

0 comments on commit 9a1eabc

Please sign in to comment.