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
5917e171
Commit
5917e171
authored
Jun 10, 2020
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preparing release 20.6.1
parent
b01dcaf3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
12 deletions
+32
-12
CHANGES.rst
CHANGES.rst
+31
-0
docs/changes/1623.feature
docs/changes/1623.feature
+0
-2
docs/changes/1637.bugfix
docs/changes/1637.bugfix
+0
-7
docs/changes/issue1641.bugfix
docs/changes/issue1641.bugfix
+0
-2
src/gevent/__init__.py
src/gevent/__init__.py
+1
-1
No files found.
CHANGES.rst
View file @
5917e171
...
...
@@ -6,6 +6,37 @@
.. towncrier release notes start
20.6.1 (2020-06-10)
===================
Features
--------
- gevent's CI is now tested on Ubuntu 18.04 (Bionic), an upgrade from
16.04 (Xenial).
See :issue:`1623`.
Bugfixes
--------
- On Python 2, the dnspython resolver can be used without having
selectors2 installed. Previously, an ImportError would be raised.
See :issue:`issue1641`.
- Python 3 ``gevent.ssl.SSLSocket`` objects no longer attempt to catch
``ConnectionResetError`` and treat it the same as an ``SSLError`` with
``SSL_ERROR_EOF`` (typically by suppressing it).
This was a difference from the way the standard library behaved (which
is to raise the exception). It was added to gevent during early
testing of OpenSSL 1.1 and TLS 1.3.
See :issue:`1637`.
----
20.6.0 (2020-06-06)
===================
...
...
docs/changes/1623.feature
deleted
100644 → 0
View file @
b01dcaf3
gevent's
C
I
is now tested on Ubuntu 18.04 (Bionic), an upgrade from
16.04
(Xenial).
docs/changes/1637.bugfix
deleted
100644 → 0
View file @
b01dcaf3
Python 3 ``gevent.ssl.SSLSocket`` objects no longer attempt to catch
``ConnectionResetError`` and treat it the same as an ``SSLError`` with
``SSL_ERROR_EOF`` (typically by suppressing it).
This was a difference from the way the standard library behaved (which
is to raise the exception). It was added to gevent during early
testing of OpenSSL 1.1 and TLS 1.3.
docs/changes/issue1641.bugfix
deleted
100644 → 0
View file @
b01dcaf3
On Python 2, the dnspython resolver can be used without having
selectors2 installed. Previously, an ImportError would be raised.
src/gevent/__init__.py
View file @
5917e171
...
...
@@ -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__
=
'20.6.1
.dev0
'
__version__
=
'20.6.1'
__all__
=
[
...
...
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