Skip to content

Commit

Permalink
BUMP 3.9.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneHarvey committed Jun 16, 2019
1 parent b834e31 commit 1535a72
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changelog
=========

Changes in Version 3.9.0.dev0
-----------------------------
Changes in Version 3.9.0b1
--------------------------

Version 3.9 adds support for MongoDB 4.2. Highlights include:

Expand Down
4 changes: 2 additions & 2 deletions doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@ 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::

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

or easy_install::

$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b1.tar.gz
2 changes: 1 addition & 1 deletion pymongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
ALL = 2
"""Profile all operations."""

version_tuple = (3, 9, 0, 'b1.dev0')
version_tuple = (3, 9, 0, 'b1')

def get_version_string():
if isinstance(version_tuple[-1], str):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
except ImportError:
_HAVE_SPHINX = False

version = "3.9.0b1.dev0"
version = "3.9.0b1"

f = open("README.rst")
try:
Expand Down

0 comments on commit 1535a72

Please sign in to comment.