Skip to content

Commit 0b843b7

Browse files
authored
BUMP 4.4.0b0 (#1144)
1 parent a3720d9 commit 0b843b7

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

doc/changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Changes in Version 4.4
66

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

1016
Issues Resolved
1117
...............

doc/installation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,4 @@ but can be found on the
197197
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
198198
They can be installed by passing the full URL for the tag to pip::
199199

200-
$ python3 -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.11.0rc0.tar.gz
200+
$ python3 -m pip install https://github.com/mongodb/mongo-python-driver/archive/4.4.0b0.tar.gz

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, 4, 0, ".dev0")
18+
version_tuple: Tuple[Union[int, str], ...] = (4, 4, 0, "b0")
1919

2020

2121
def get_version_string() -> str:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def build_extension(self, ext):
281281
aws_reqs = ["pymongo-auth-aws<2.0.0"]
282282

283283
extras_require = {
284-
"encryption": ["pymongocrypt>=1.3.0,<2.0.0"] + aws_reqs,
284+
"encryption": ["pymongocrypt>=1.5.0,<2.0.0"] + aws_reqs,
285285
"ocsp": pyopenssl_reqs,
286286
"snappy": ["python-snappy"],
287287
"zstd": ["zstandard"],

0 commit comments

Comments
 (0)