From 8a8fc09833b4da1f4e7a4f2b7a23e90599e7e9a9 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 9 Sep 2025 11:45:04 -0500 Subject: [PATCH] PYTHON-5535 Prepare for PyMongoCrypt 1.16.0 --- bindings/python/CHANGELOG.rst | 7 +++++++ bindings/python/pymongocrypt/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bindings/python/CHANGELOG.rst b/bindings/python/CHANGELOG.rst index 071e9873d..6a2c4808a 100644 --- a/bindings/python/CHANGELOG.rst +++ b/bindings/python/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +Changes in Version 1.16.0 +------------------------- + +- Add support for text-based Queryable Encryption with the new "textPreview" + algorithm. NOTE: The "textPreview" algorithm is experimental only. It is + not intended for public use. + Changes in Version 1.15.1 ------------------------- diff --git a/bindings/python/pymongocrypt/version.py b/bindings/python/pymongocrypt/version.py index fc1d1eb75..c3da1df26 100644 --- a/bindings/python/pymongocrypt/version.py +++ b/bindings/python/pymongocrypt/version.py @@ -12,6 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.15.2.dev0" +__version__ = "1.16.0" _MIN_LIBMONGOCRYPT_VERSION = "1.8.0"