Skip to content

Commit 17e04af

Browse files
committed
BUMP 2.9rc0
1 parent 283bfa3 commit 17e04af

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

doc/installation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ to install pymongo on platforms other than Windows::
2525

2626
To get a specific version of pymongo::
2727

28-
$ pip install pymongo==2.6.3
28+
$ pip install pymongo==2.8.1
2929

3030
To upgrade using pip::
3131

@@ -192,7 +192,7 @@ PyMongo source directory::
192192
$ python setup.py bdist_egg
193193

194194
The egg package can be found in the dist/ subdirectory. The file name will
195-
resemble “pymongo-2.6.3-py2.7-linux-x86_64.egg” but may have a different name
195+
resemble “pymongo-2.8.1-py2.7-linux-x86_64.egg” but may have a different name
196196
depending on your platform and the version of python you use to compile.
197197

198198
.. warning::
@@ -205,7 +205,7 @@ depending on your platform and the version of python you use to compile.
205205
Copy this file to the target system and issue the following command to install the
206206
package::
207207

208-
$ sudo easy_install pymongo-2.6.3-py2.7-linux-x86_64.egg
208+
$ sudo easy_install pymongo-2.8.1-py2.7-linux-x86_64.egg
209209

210210
Installing a release candidate
211211
------------------------------
@@ -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.8rc2.tar.gz
219+
$ pip install https://github.com/mongodb/mongo-python-driver/archive/2.9rc0.tar.gz
220220

221221
or easy_install::
222222

223-
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.8rc2.tar.gz
223+
$ easy_install https://github.com/mongodb/mongo-python-driver/archive/2.9rc0.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, 9, ".dev0")
80+
version_tuple = (2, 9, "rc0")
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.9.dev0"
36+
version = "2.9rc0"
3737

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

0 commit comments

Comments
 (0)