Skip to content

BUMP 3.11 #476

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`_.
Expand All @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion pymongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
except ImportError:
_HAVE_SPHINX = False

version = "3.11.0rc1.dev0"
version = "3.11.0"

f = open("README.rst")
try:
Expand Down