From 13185338f7d3a86bca5866c563667eb755e5876e Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Fri, 28 Jun 2024 12:01:27 -0700 Subject: [PATCH] PYTHON-4524 Document support for MongoDB 8.0 (#1721) --- README.md | 2 +- doc/changelog.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3d13f1aa9..ed434b02b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ a native Python driver for MongoDB. The `gridfs` package is a [gridfs](https://github.com/mongodb/specifications/blob/master/source/gridfs/gridfs-spec.rst/) implementation on top of `pymongo`. -PyMongo supports MongoDB 3.6, 4.0, 4.2, 4.4, 5.0, 6.0, and 7.0. +PyMongo supports MongoDB 3.6, 4.0, 4.2, 4.4, 5.0, 6.0, 7.0, and 8.0. ## Support / Feedback diff --git a/doc/changelog.rst b/doc/changelog.rst index d2446ba78..817862914 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -6,6 +6,7 @@ Changes in Version 4.9.0 PyMongo 4.9 brings a number of improvements including: +- Added support for MongoDB 8.0. - A new asynchronous API with full asyncio support. - pymongocrypt>=1.10 is now required for :ref:`In-Use Encryption` support.