Skip to content

Commit

Permalink
chore: prepare 3.1.3rc1 (#2193)
Browse files Browse the repository at this point in the history
  • Loading branch information
vytas7 committed Dec 4, 2023
1 parent 958ec70 commit 8e568a0
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 4 deletions.
11 changes: 11 additions & 0 deletions docs/changes/3.1.3.rst
@@ -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
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
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
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
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
Expand Up @@ -76,7 +76,7 @@ console_scripts =

[egg_info]
# TODO replace
tag_build =
tag_build = rc1

[aliases]
test=pytest
Expand Down

0 comments on commit 8e568a0

Please sign in to comment.