Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
ac001466
Commit
ac001466
authored
Oct 14, 2022
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparing release 22.10.1
parent
4274d5b8
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
23 additions
and
14 deletions
+23
-14
CHANGES.rst
CHANGES.rst
+20
-0
docs/changes/1898.misc
docs/changes/1898.misc
+0
-5
docs/changes/1910.misc
docs/changes/1910.misc
+0
-1
docs/changes/1913.feature
docs/changes/1913.feature
+0
-1
docs/changes/1915.misc
docs/changes/1915.misc
+0
-4
src/gevent/__init__.py
src/gevent/__init__.py
+1
-1
src/gevent/resolver/__init__.py
src/gevent/resolver/__init__.py
+1
-1
src/gevent/resolver/ares.py
src/gevent/resolver/ares.py
+1
-1
No files found.
CHANGES.rst
View file @
ac001466
...
...
@@ -6,6 +6,26 @@
.. towncrier release notes start
22.10.1 (2022-10-14)
====================
Features
--------
- Update bundled libuv to 1.44.2.
See :issue:`1913`.
Misc
----
- See :issue:`1898`., See :issue:`1910`., See :issue:`1915`.
----
22.08.0 (2022-10-08)
====================
...
...
docs/changes/1898.misc
deleted
100644 → 0
View file @
4274d5b8
gevent now provides ppc64le binary wheels. These are considered
experimental, are barely tested, are compiled with low optimizations,
and do not include the c-ares resolver. They are meant for development
only. Serious production users should continue compiling their own
binary wheels.
docs/changes/1910.misc
deleted
100644 → 0
View file @
4274d5b8
Use a more modern setuptools build backend.
docs/changes/1913.feature
deleted
100644 → 0
View file @
4274d5b8
Update
bundled
libuv
to
1.44.2.
docs/changes/1915.misc
deleted
100644 → 0
View file @
4274d5b8
Stop using the deprecated 'DEF' construct in Cython files. See
https://github.com/cython/cython/issues/4310
Enable memory leak checking for Python 3.11.
src/gevent/__init__.py
View file @
ac001466
...
...
@@ -27,7 +27,7 @@ version_info = _version_info(20, 0, 0, 'dev', 0) # XXX: Remove me
#: Use ``pkg_resources.parse_version(__version__)`` or
#: ``packaging.version.Version(__version__)`` to get a machine-usable
#: value.
__version__
=
'22.10.
2.dev0
'
__version__
=
'22.10.
1
'
__all__
=
[
...
...
src/gevent/resolver/__init__.py
View file @
ac001466
...
...
@@ -141,7 +141,7 @@ class AbstractResolver(object):
Subclasses that define resources should override.
.. versionadded::
NEXT
.. versionadded::
22.10.1
"""
@
staticmethod
...
...
src/gevent/resolver/ares.py
View file @
ac001466
...
...
@@ -117,7 +117,7 @@ class Resolver(AbstractResolver):
Handling of localhost and broadcast names is now more consistent.
.. versionchanged::
NEXT
.. versionchanged::
22.10.1
Now has a ``__del__`` method that warns if the object is destroyed
without being properly closed.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment