Skip to content

Commit

Permalink
PYTHON-3914 Release 4.5.0 (#1359)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Aug 22, 2023
1 parent aaff6ed commit 3353b11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pymongo/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3353b11

Please sign in to comment.