BUMP 4.4.0b0 (#1144)

This commit is contained in:
Julius Park 2023-01-25 14:09:15 -08:00 committed by GitHub
parent a3720d9cea
commit 0b843b76f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 3 deletions

View File

@ -6,6 +6,12 @@ Changes in Version 4.4
- Added support for passing a list containing (key, direction) pairs
or keys to :meth:`~pymongo.collection.Collection.create_index`.
- **BETA** Added support for range queries on client side field level encrypted collections.
- pymongocrypt 1.5.0 or later is now required for client side field level
encryption support.
- Improved support for Pyright to improve typing support for IDEs like Visual Studio Code or Visual Studio.
- Improved support for type-checking with MyPy "strict" mode (`--strict`).
- Added support for Python 3.11.
Issues Resolved
...............

View File

@ -197,4 +197,4 @@ but can be found on the
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
They can be installed by passing the full URL for the tag to pip::
$ python3 -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.11.0rc0.tar.gz
$ python3 -m pip install https://github.com/mongodb/mongo-python-driver/archive/4.4.0b0.tar.gz

View File

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

View File

@ -281,7 +281,7 @@ if sys.platform in ("win32", "darwin"):
aws_reqs = ["pymongo-auth-aws<2.0.0"]
extras_require = {
"encryption": ["pymongocrypt>=1.3.0,<2.0.0"] + aws_reqs,
"encryption": ["pymongocrypt>=1.5.0,<2.0.0"] + aws_reqs,
"ocsp": pyopenssl_reqs,
"snappy": ["python-snappy"],
"zstd": ["zstandard"],