BUMP 3.11 (#476)

This commit is contained in:
Shane Harvey 2020-07-30 13:24:44 -07:00 committed by GitHub
parent c99254fe97
commit 9fa94db01a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

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

View File

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

View File

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