Skip to content

Commit 0b715cf

Browse files
committed
BUMP 2.8rc2
1 parent 83f5349 commit 0b715cf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ but can be found on the
216216
`github tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
217217
They can be installed by passing the full URL for the tag to pip::
218218

219-
$ pip install https://github.com/mongodb/mongo-python-driver/archive/2.8rc0.tar.gz
219+
$ pip install https://github.com/mongodb/mongo-python-driver/archive/2.8rc2.tar.gz
220220

221221
or easy_install::
222222

223-
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.8rc0.tar.gz
223+
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.8rc2.tar.gz
224224

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
ALL = 2
7878
"""Profile all operations."""
7979

80-
version_tuple = (2, 8, 'rc1+')
80+
version_tuple = (2, 8, 'rc2')
8181

8282
def get_version_string():
8383
if isinstance(version_tuple[-1], basestring):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from distutils.errors import DistutilsPlatformError, DistutilsExecError
3434
from distutils.core import Extension
3535

36-
version = "2.8rc1+"
36+
version = "2.8rc2"
3737

3838
f = open("README.rst")
3939
try:

0 commit comments

Comments
 (0)