Skip to content

Commit 3353b11

Browse files
authored
PYTHON-3914 Release 4.5.0 (#1359)
1 parent aaff6ed commit 3353b11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/changelog.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ PyMongo 4.5 brings a number of improvements including:
1515
- Added :meth:`~pymongo.database.Database.cursor_command`
1616
and :meth:`~pymongo.command_cursor.CommandCursor.try_next` to support
1717
executing an arbitrary command that returns a cursor.
18-
- cryptography 2.5 or later is now required for :ref:`OCSP` support.
18+
- ``cryptography`` 2.5 or later is now required for :ref:`OCSP` support.
1919
- 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`_).
2020

2121
.. warning:: PyMongo no longer supports PyPy3 versions older than 3.8. Users

pymongo/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""Current version of PyMongo."""
1616
from typing import Tuple, Union
1717

18-
version_tuple: Tuple[Union[int, str], ...] = (4, 5, 0, ".dev0")
18+
version_tuple: Tuple[Union[int, str], ...] = (4, 5, 0)
1919

2020

2121
def get_version_string() -> str:

0 commit comments

Comments
 (0)