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

Bump version to 0.21.0 #2332

Closed
wants to merge 4 commits into from
Closed
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
4 changes: 3 additions & 1 deletion ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ else
# 'coverage xml' to generate the report that it uses, and that will only
# apply the ignore patterns in the current directory's .coveragerc.
cp ../.coveragerc .
if pytest -r a --junitxml=../test-results.xml --run-slow ${INSTALLDIR} --cov="$INSTALLDIR" --verbose; then
# --assert=plain disables pytest assertion rewrites so that we can test 3.11.0b2
# https://github.com/pytest-dev/pytest/issues/10008
if pytest -r a --junitxml=../test-results.xml --run-slow ${INSTALLDIR} --cov="$INSTALLDIR" --verbose --assert=plain; then
PASSED=true
else
PASSED=false
Expand Down
8 changes: 8 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ Release history

.. towncrier release notes start

Trio 0.21.0 (2022-06-01)
----------------------------

- Trio now supports Python 3.11. (`#2270
<https://github.com/python-trio/trio/issues/2270>`__, `#2318
<https://github.com/python-trio/trio/issues/2318>`__, `#2319
<https://github.com/python-trio/trio/issues/2319>`__)

Trio 0.20.0 (2022-02-21)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion trio/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is imported from __init__.py and exec'd from setup.py

__version__ = "0.20.0+dev"
__version__ = "0.21.0"