Skip to content

Commit

Permalink
BUMP 4.4.0b0 (#1144)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusgeo committed Jan 25, 2023
1 parent a3720d9 commit 0b843b7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
...............
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pymongo/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def build_extension(self, ext):
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"],
Expand Down

0 comments on commit 0b843b7

Please sign in to comment.