BUMP 3.6.1

This commit is contained in:
Shane Harvey 2018-02-27 17:38:10 -08:00
parent 9cecbb2ae5
commit a9e2192919
3 changed files with 8 additions and 5 deletions

View File

@ -6,14 +6,17 @@ Changes in Version 3.6.1
Version 3.6.1 fixes bugs reported since the release of 3.6.0:
- Fix regression in PyMongo 3.5.0 that causes idle sockets to be closed every
second when ``maxIdleTimeMS`` is set. Idle sockets are now closed after
- Fix regression in PyMongo 3.5.0 that causes idle sockets to be closed almost
instantly when ``maxIdleTimeMS`` is set. Idle sockets are now closed after
``maxIdleTimeMS`` milliseconds.
- :attr:`pymongo.mongo_client.MongoClient.max_idle_time_ms` returns
- :attr:`pymongo.mongo_client.MongoClient.max_idle_time_ms` now returns
milliseconds instead of seconds.
- Properly import and use the
`monotonic <https://pypi.python.org/pypi/monotonic>`_
library for monotonic time when it is installed.
- :meth:`~pymongo.collection.Collection.aggregate` now ignores the
``batchSize`` argument when running a pipeline with a ``$out`` stage.
- Always send handshake metadata for new connections.
Issues Resolved
...............

View File

@ -64,7 +64,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
version_tuple = (3, 6, 1, '.dev0')
version_tuple = (3, 6, 1)
def get_version_string():
if isinstance(version_tuple[-1], str):

View File

@ -31,7 +31,7 @@ try:
except ImportError:
_HAVE_SPHINX = False
version = "3.6.1.dev0"
version = "3.6.1"
f = open("README.rst")
try: