BUMP 3.8.0

This commit is contained in:
Prashant Mital 2019-04-22 16:37:29 -05:00
parent 3383316fd5
commit 1c69dd0860
No known key found for this signature in database
GPG Key ID: 3D2DAA9E483ABE51
3 changed files with 7 additions and 4 deletions

View File

@ -1,8 +1,8 @@
Changelog
=========
Changes in Version 3.8.0.dev0
-----------------------------
Changes in Version 3.8.0
------------------------
.. warning:: PyMongo no longer supports Python 2.6. RHEL 6 users should install
Python 2.7 or newer from `Red Hat Software Collections
@ -61,6 +61,9 @@ Changes in Version 3.8.0.dev0
accept multiple bson documents.
- Iterating over a :class:`~bson.raw_bson.RawBSONDocument` now maintains the
same field order of the underlying raw BSON document.
- Applications can now register a custom server selector. For more information
see :doc:`custom type example <examples/server_selection>`.
- The connection pool now implements a LIFO policy.
Issues Resolved
...............

View File

@ -64,7 +64,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
version_tuple = (3, 8, 0, '.dev0')
version_tuple = (3, 8, 0)
def get_version_string():
if isinstance(version_tuple[-1], str):

View File

@ -39,7 +39,7 @@ except ImportError:
except ImportError:
_HAVE_SPHINX = False
version = "3.8.0.dev0"
version = "3.8.0"
f = open("README.rst")
try: