Skip to content

BUMP 4.0.2 #891

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
Mar 3, 2022
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
20 changes: 20 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
-------------------------

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

version = "4.0.2.dev0"
version = "4.0.2"

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