Skip to content

Commit

Permalink
MOTOR-1144 Release 3.2 (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jun 21, 2023
1 parent ff05bfc commit 9d38d58
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Changelog
Motor 3.2.0
-----------

- Add support for MongoDB 7.0.
- Motor 3.2 adds support for Queryable Encryption helpers :meth:`~motor.core.MotorClientEncryption.create_encrypted_collection` and
- Add support for MongoDB 7.0 and PyMongo 4.4+.
- Add support for Queryable Encryption helpers :meth:`~motor.core.MotorClientEncryption.create_encrypted_collection` and
:meth:`~motor.core.MotorClientEncryption.encrypt_expression`.
Backwards-breaking changes may be made before the final release.
- pymongocrypt 1.6.0 or later is now required for Client Side Field Level
Encryption (CSFLE) and Queryable Encryption (QE) support. MongoDB Server 7.0
introduced a backwards breaking change to the QE protocol. Users taking
advantage of the QE must now upgrade to MongoDB 7.0+ and Motor 4.4+.
advantage of the QE must now upgrade to MongoDB 7.0+ and Motor 3.2+.

Motor 3.1.1
-----------
Expand Down
2 changes: 1 addition & 1 deletion motor/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

"""Version-related data for motor."""

version_tuple = (3, 1, 2, ".dev0")
version_tuple = (3, 2, 0)


def get_version_string() -> str:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
with open("README.rst") as readme:
long_description = readme.read()

pymongo_ver = ">=4.1,<5"
pymongo_ver = ">=4.4,<5"

install_requires = ["pymongo" + pymongo_ver]

Expand Down

0 comments on commit 9d38d58

Please sign in to comment.