-
-
Notifications
You must be signed in to change notification settings - Fork 947
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Showing
6 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>`__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,5 @@ | |
|
||
"""Falcon version.""" | ||
|
||
__version__ = '3.1.0' | ||
__version__ = '3.1.1' | ||
"""Current version of Falcon.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,7 +75,7 @@ console_scripts = | |
|
||
[egg_info] | ||
# TODO replace | ||
tag_build = | ||
tag_build = b1 | ||
|
||
[aliases] | ||
test=pytest | ||
|