Skip to content

Commit 9fa94db

Browse files
authored
BUMP 3.11 (#476)
1 parent c99254f commit 9fa94db

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

doc/changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ Highlights include:
3535
:class:`~pymongo.operations.UpdateMany`,
3636
:class:`~pymongo.operations.DeleteOne`, and
3737
:class:`~pymongo.operations.DeleteMany` bulk operations.
38+
- Added support for :data:`bson.binary.UuidRepresentation.UNSPECIFIED` and
39+
``MongoClient(uuidRepresentation='unspecified')`` which will become the
40+
default UUID representation starting in PyMongo 4.0. See
41+
:ref:`handling-uuid-data-example` for details.
3842
- Added the ``background`` parameter to
3943
:meth:`pymongo.database.Database.validate_collection`. For a description
4044
of this parameter see the MongoDB documentation for the `validate command`_.
@@ -49,6 +53,8 @@ Highlights include:
4953
- Fixed a bug in change streams that could cause PyMongo to miss some change
5054
documents when resuming a stream that was started without a resume token and
5155
whose first batch did not contain any change documents.
56+
- Fixed an bug where using gevent.Timeout to timeout an operation could
57+
lead to a deadlock.
5258

5359
Deprecations:
5460

pymongo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
ALL = 2
7575
"""Profile all operations."""
7676

77-
version_tuple = (3, 11, 0, 'rc1.dev0')
77+
version_tuple = (3, 11, 0)
7878

7979
def get_version_string():
8080
if isinstance(version_tuple[-1], str):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
_HAVE_SPHINX = False
4141

42-
version = "3.11.0rc1.dev0"
42+
version = "3.11.0"
4343

4444
f = open("README.rst")
4545
try:

0 commit comments

Comments
 (0)