Skip to content

Commit 1535a72

Browse files
committed
BUMP 3.9.0b1
1 parent b834e31 commit 1535a72

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

doc/changelog.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Changelog
22
=========
33

4-
Changes in Version 3.9.0.dev0
5-
-----------------------------
4+
Changes in Version 3.9.0b1
5+
--------------------------
66

77
Version 3.9 adds support for MongoDB 4.2. Highlights include:
88

doc/installation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ but can be found on the
255255
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
256256
They can be installed by passing the full URL for the tag to pip::
257257

258-
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz
258+
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b1.tar.gz
259259

260260
or easy_install::
261261

262-
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz
262+
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b1.tar.gz

pymongo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
ALL = 2
6565
"""Profile all operations."""
6666

67-
version_tuple = (3, 9, 0, 'b1.dev0')
67+
version_tuple = (3, 9, 0, 'b1')
6868

6969
def get_version_string():
7070
if isinstance(version_tuple[-1], str):

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
_HAVE_SPHINX = False
4141

42-
version = "3.9.0b1.dev0"
42+
version = "3.9.0b1"
4343

4444
f = open("README.rst")
4545
try:

0 commit comments

Comments
 (0)