PYTHON-3914 Release 4.5.0 (#1359)

This commit is contained in:
Steven Silvester 2023-08-22 06:22:18 -05:00 committed by GitHub
parent aaff6edd8b
commit 3353b11cf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ PyMongo 4.5 brings a number of improvements including:
- Added :meth:`~pymongo.database.Database.cursor_command`
and :meth:`~pymongo.command_cursor.CommandCursor.try_next` to support
executing an arbitrary command that returns a cursor.
- cryptography 2.5 or later is now required for :ref:`OCSP` support.
- ``cryptography`` 2.5 or later is now required for :ref:`OCSP` support.
- Improved bson encoding and decoding performance by up to 134%(`PYTHON-3729`_, `PYTHON-3797`_, `PYTHON-3816`_, `PYTHON-3817`_, `PYTHON-3820`_, `PYTHON-3824`_, and `PYTHON-3846`_).
.. warning:: PyMongo no longer supports PyPy3 versions older than 3.8. Users

View File

@ -15,7 +15,7 @@
"""Current version of PyMongo."""
from typing import Tuple, Union
version_tuple: Tuple[Union[int, str], ...] = (4, 5, 0, ".dev0")
version_tuple: Tuple[Union[int, str], ...] = (4, 5, 0)
def get_version_string() -> str: