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: prepare 3.1.3rc1 #2193

Merged
merged 1 commit into from
Dec 4, 2023
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
11 changes: 11 additions & 0 deletions docs/changes/3.1.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Changelog for Falcon 3.1.3
==========================

Summary
-------

This is a minor bugfix release that only pins the ``pytest-asyncio`` test
dependency in order to prevent an incompatible version from interfering with
the build workflow.

This release is otherwise identical to :doc:`Falcon 3.1.2 <3.1.2>`.
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.3 <3.1.3>
3.1.2 <3.1.2>
3.1.1 <3.1.1>
3.1.0 <3.1.0>
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.2'
__version__ = '3.1.3'
"""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.2.rst"
filename = "docs/changes/3.1.3.rst"
directory = "docs/_newsfragments"
issue_format = "`#{issue} <https://github.com/falconry/falcon/issues/{issue}>`__"

Expand Down
3 changes: 2 additions & 1 deletion requirements/tests
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ requests
testtools; python_version < '3.10'

# ASGI Specific (daphne is installed on a its own tox env)
pytest-asyncio
# TODO(vytas): Some ASGI tests hang with pytest-asyncio-0.23 on 3.8 & 3.9.
pytest-asyncio < 0.22.0
aiofiles; python_version >= '3.6'
httpx; python_version >= '3.6'
uvicorn < 0.17.0; python_version == '3.6'
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ console_scripts =

[egg_info]
# TODO replace
tag_build =
tag_build = rc1

[aliases]
test=pytest
Expand Down
Loading