Skip to content

Commit

Permalink
Preparing release 21.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Dec 11, 2021
1 parent 8455c2f commit a904564
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 22 deletions.
44 changes: 44 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,50 @@

.. towncrier release notes start
21.12.0 (2021-12-11)
====================


Features
--------

- Update autoconf files for Apple Silicon Macs. Note that while there
are reports of compiling gevent on Apple Silicon Macs now, this is
*not* a tested configuration. There may be some remaining issues with
CFFI on some systems as well.
See :issue:`1721`.
- Build and upload CPython 3.10 binary manylinux wheels.

Unfortunately, this required us to stop building and uploading CPython
2.7 binary manylinux wheels. Binary wheels for 2.7 continue to be
available for Windows and macOS.
See :issue:`1822`.
- Test and distribute musllinux_1_1 wheels.
See :issue:`1837`.
- Update the tested versions of PyPy2 and PyPy3. For PyPy2, there should
be no user visible changes, but for PyPy3, support has moved from
Python 3.6 to Python 3.7.
See :issue:`1843`.


Bugfixes
--------

- Try to avoid linking to two different Python runtime DLLs on Windows.
See :issue:`1814`.
- Stop compiling manylinux wheels with ``-ffast-math.`` This was
implicit in ``-Ofast``, but could alter the global state of the
process. Analysis and fix thanks to Ilya Konstantinov.
See :issue:`1820`.
- Fix hanging the interpreter on shutdown if gevent monkey patching
occurred on a non-main thread in Python 3.9.8 and above. (Note that
this is not a recommended practice.)
See :issue:`1839`.


----


21.8.0 (2021-08-05)
===================

Expand Down
4 changes: 0 additions & 4 deletions docs/changes/1721.feature

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/1814.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions docs/changes/1820.bugfix

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changes/1822.feature

This file was deleted.

1 change: 0 additions & 1 deletion docs/changes/1837.feature

This file was deleted.

3 changes: 0 additions & 3 deletions docs/changes/1839.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions docs/changes/1843.feature

This file was deleted.

2 changes: 1 addition & 1 deletion src/gevent/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#: Use ``pkg_resources.parse_version(__version__)`` or
#: ``packaging.version.Version(__version__)`` to get a machine-usable
#: value.
__version__ = '21.8.1.dev0'
__version__ = '21.12.0'


__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion src/gevent/subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ class Popen(object):
it may make many system calls and/or trips around the event loop to accomplish this).
See :issue:`1711`.
.. versionchanged:: NEXT
.. versionchanged:: 21.12.0
Added the ``pipesize`` argument for compatibility with Python 3.10.
This is ignored on all platforms.
"""
Expand Down

0 comments on commit a904564

Please sign in to comment.