Skip to content

Commit a9e2192

Browse files
committed
BUMP 3.6.1
1 parent 9cecbb2 commit a9e2192

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

doc/changelog.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ Changes in Version 3.6.1
66

77
Version 3.6.1 fixes bugs reported since the release of 3.6.0:
88

9-
- Fix regression in PyMongo 3.5.0 that causes idle sockets to be closed every
10-
second when ``maxIdleTimeMS`` is set. Idle sockets are now closed after
9+
- Fix regression in PyMongo 3.5.0 that causes idle sockets to be closed almost
10+
instantly when ``maxIdleTimeMS`` is set. Idle sockets are now closed after
1111
``maxIdleTimeMS`` milliseconds.
12-
- :attr:`pymongo.mongo_client.MongoClient.max_idle_time_ms` returns
12+
- :attr:`pymongo.mongo_client.MongoClient.max_idle_time_ms` now returns
1313
milliseconds instead of seconds.
1414
- Properly import and use the
1515
`monotonic <https://pypi.python.org/pypi/monotonic>`_
1616
library for monotonic time when it is installed.
17+
- :meth:`~pymongo.collection.Collection.aggregate` now ignores the
18+
``batchSize`` argument when running a pipeline with a ``$out`` stage.
19+
- Always send handshake metadata for new connections.
1720

1821
Issues Resolved
1922
...............

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
ALL = 2
6565
"""Profile all operations."""
6666

67-
version_tuple = (3, 6, 1, '.dev0')
67+
version_tuple = (3, 6, 1)
6868

6969
def get_version_string():
7070
if isinstance(version_tuple[-1], str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
except ImportError:
3232
_HAVE_SPHINX = False
3333

34-
version = "3.6.1.dev0"
34+
version = "3.6.1"
3535

3636
f = open("README.rst")
3737
try:

0 commit comments

Comments
 (0)