Skip to content

Commit 439c6eb

Browse files
committed
BUMP 3.12.0b1
1 parent 07d2d8e commit 439c6eb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.12.0
5-
-------------------------
4+
Changes in Version 3.12.0b1
5+
---------------------------
66

77
.. warning:: PyMongo 3.12.0 deprecates support for Python 2.7, 3.4 and 3.5.
88
These Python versions will not be supported by PyMongo 4.

doc/installation.rst

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

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

pymongo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
Deprecated
100100
"""
101101

102-
version_tuple = (3, 12, 0, 'b1.dev0')
102+
version_tuple = (3, 12, 0, 'b1')
103103

104104
def get_version_string():
105105
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.12.0b1.dev0"
42+
version = "3.12.0b1"
4343

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

0 commit comments

Comments
 (0)