Skip to content

Commit 36a31ff

Browse files
committed
BUMP 3.6rc0.
1 parent 4730209 commit 36a31ff

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

doc/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Changelog
22
=========
33

4-
Changes in Next Version
5-
-----------------------
4+
Changes in Version 3.6.0
5+
------------------------
66

77
This version drops support for MongoDB versions older than 2.6. If connecting to
88
a MongoDB 2.4 server or older, PyMongo now throws a

doc/installation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ PyMongo source directory::
216216
$ python setup.py bdist_egg
217217

218218
The egg package can be found in the dist/ subdirectory. The file name will
219-
resemble “pymongo-3.4-py2.7-linux-x86_64.egg” but may have a different name
219+
resemble “pymongo-3.6-py2.7-linux-x86_64.egg” but may have a different name
220220
depending on your platform and the version of python you use to compile.
221221

222222
.. warning::
@@ -229,7 +229,7 @@ depending on your platform and the version of python you use to compile.
229229
Copy this file to the target system and issue the following command to install the
230230
package::
231231

232-
$ sudo python -m easy_install pymongo-3.4-py2.7-linux-x86_64.egg
232+
$ sudo python -m easy_install pymongo-3.6-py2.7-linux-x86_64.egg
233233

234234
Installing a beta or release candidate
235235
--------------------------------------
@@ -240,8 +240,8 @@ but can be found on the
240240
`github tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
241241
They can be installed by passing the full URL for the tag to pip::
242242

243-
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.4rc0.tar.gz
243+
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.6rc0.tar.gz
244244

245245
or easy_install::
246246

247-
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.4rc0.tar.gz
247+
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.6rc0.tar.gz

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
ALL = 2
6565
"""Profile all operations."""
6666

67-
version_tuple = (3, 6, 0, '.dev0')
67+
version_tuple = (3, 6, 'rc0')
6868

6969
def get_version_string():
7070
if isinstance(version_tuple[-1], str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
except ImportError:
3232
_HAVE_SPHINX = False
3333

34-
version = "3.6.0.dev0"
34+
version = "3.6rc0"
3535

3636
f = open("README.rst")
3737
try:

0 commit comments

Comments
 (0)