From 0b715cff2eaaa345d5e345ff5dd52012c35e098f Mon Sep 17 00:00:00 2001 From: Bernie Hackett Date: Wed, 24 Dec 2014 11:38:35 -0800 Subject: [PATCH] BUMP 2.8rc2 --- 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 690593d03..98ffbe941 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -216,9 +216,9 @@ but can be found on the `github tags page `_. They can be installed by passing the full URL for the tag to pip:: - $ pip install https://github.com/mongodb/mongo-python-driver/archive/2.8rc0.tar.gz + $ pip install https://github.com/mongodb/mongo-python-driver/archive/2.8rc2.tar.gz or easy_install:: - $ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.8rc0.tar.gz + $ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.8rc2.tar.gz diff --git a/pymongo/__init__.py b/pymongo/__init__.py index 5e29342f3..a92363c58 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -77,7 +77,7 @@ SLOW_ONLY = 1 ALL = 2 """Profile all operations.""" -version_tuple = (2, 8, 'rc1+') +version_tuple = (2, 8, 'rc2') def get_version_string(): if isinstance(version_tuple[-1], basestring): diff --git a/setup.py b/setup.py index e5c1181f6..55561b30e 100755 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ from distutils.errors import CCompilerError from distutils.errors import DistutilsPlatformError, DistutilsExecError from distutils.core import Extension -version = "2.8rc1+" +version = "2.8rc2" f = open("README.rst") try: