From 97af797898374dd20feae6f59dd0a4980cded278 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Thu, 7 Mar 2019 15:26:01 -0800 Subject: [PATCH] BUMP 3.9.0b0 --- doc/installation.rst | 4 ++-- pymongo/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/installation.rst b/doc/installation.rst index 1e20e5b90..989b5a8b6 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -250,8 +250,8 @@ but can be found on the `GitHub tags page `_. 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.7.0b0.tar.gz + $ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz or easy_install:: - $ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.7.0b0.tar.gz + $ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.9.0b0.tar.gz diff --git a/pymongo/__init__.py b/pymongo/__init__.py index 11fff3d73..4e5261748 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -64,7 +64,7 @@ SLOW_ONLY = 1 ALL = 2 """Profile all operations.""" -version_tuple = (3, 8, 0, '.dev0') +version_tuple = (3, 9, 0, 'b0') def get_version_string(): if isinstance(version_tuple[-1], str): diff --git a/setup.py b/setup.py index 455313b8a..2c1696f89 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ except ImportError: except ImportError: _HAVE_SPHINX = False -version = "3.8.0.dev0" +version = "3.9.0b0" f = open("README.rst") try: