BUMP 4.0.2 (#891)

This commit is contained in:
Shane Harvey 2022-03-03 10:02:20 -08:00 committed by GitHub
parent 2a36f895fb
commit e2dcb868c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 2 deletions

View File

@ -1,6 +1,26 @@
Changelog
=========
Changes in Version 4.0.2
-------------------------
Issues Resolved
...............
Version 4.0.2 fixes a number of bugs:
- Fixed a bug :meth:`pymongo.collection.Collection.bulk_write` did not apply
the collection's CodecOptions to ``upserted_ids`` result (`PYTHON-3075`_).
- Fixes the :doc:`/examples/high_availability` example for initializing a
replica set (`PYTHON-3041`_).
See the `PyMongo 4.0.2 release notes in JIRA`_ for the list of resolved issues
in this release.
.. _PYTHON-3041: https://jira.mongodb.org/browse/PYTHON-3027
.. _PYTHON-3075: https://jira.mongodb.org/browse/PYTHON-3075
.. _PyMongo 4.0.2 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=32522
Changes in Version 4.0.1
-------------------------

View File

@ -53,7 +53,7 @@ TEXT = "text"
.. _text index: http://docs.mongodb.org/manual/core/index-text/
"""
version_tuple = (4, 0, 2, ".dev0")
version_tuple = (4, 0, 2)
def get_version_string():

View File

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