diff --git a/CHANGES.rst b/CHANGES.rst index d07dd02d4..eefab7706 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,7 +4,7 @@ .. currentmodule:: gevent -1.3.5 (unreleased) +1.3.5 (2018-07-16) ================== - Update the bundled libuv from 1.20.1 to 1.22.0. @@ -23,8 +23,8 @@ - :meth:`gevent.socket.socket.connect` doesn't pass the port (service) to :func:`socket.getaddrinfo` when it resolves an ``AF_INET`` or - ``AF_INET6`` address. This fixes an issue on Solaris. Reported in - :issue:`1252` by wiggin15. + ``AF_INET6`` address. (The standard library doesn't either.) This + fixes an issue on Solaris. Reported in :issue:`1252` by wiggin15. - :meth:`gevent.socket.socket.connect` works with more address families, notably AF_TIPC, AF_NETLINK, AF_BLUETOOTH, AF_ALG and AF_VSOCK. diff --git a/src/gevent/__init__.py b/src/gevent/__init__.py index 99d835785..ff34ff671 100644 --- a/src/gevent/__init__.py +++ b/src/gevent/__init__.py @@ -27,7 +27,7 @@ #: Use ``pkg_resources.parse_version(__version__)`` or #: ``packaging.version.Version(__version__)`` to get a machine-usable #: value. -__version__ = '1.3.5.dev0' +__version__ = '1.3.5' __all__ = [