From b0680b890a2aa8f96cbf0c82d6322cfeda77ca43 Mon Sep 17 00:00:00 2001 From: Dave Brondsema Date: Thu, 1 Aug 2024 14:34:27 -0400 Subject: [PATCH] version 0.14.0 --- docs/news.rst | 10 ++++++---- ming/version.py | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/news.rst b/docs/news.rst index c147200..22306dc 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,11 +1,13 @@ Ming News / Release Notes ===================================== -The latest releases support PyMongo 3. The older 0.5.x releases support PyMongo 2 and Python 2. +The latest releases support PyMongo v3 and v4 + +0.14.0 (Aug 1, 2024) +-------------------- + +Support PyMongo 4.x (3.x should still work too). There are several breaking changes, whether you update pymongo or not: -Pre-Release ---------------------- -* Prepare for PyMongo 4.0 support * Replace ``find_and_modify()`` session methods with ``find_one_and_update()``, ``find_one_and_replace()``, and ``find_one_and_delete()`` to closer match pymongo4's API * Remove ``group()`` session methods as they are unsupported in pymongo4. Use the aggregation pipeline. diff --git a/ming/version.py b/ming/version.py index e181297..b71dc9d 100644 --- a/ming/version.py +++ b/ming/version.py @@ -1,2 +1,2 @@ -__version_info__ = ('0', '13', '0') +__version_info__ = ('0', '14', '0') __version__ = '.'.join(__version_info__)