Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(3.1.1): prepare first beta release of 3.1.1 #2123

Merged
merged 2 commits into from
Nov 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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