From 1c69dd0860f3a65df2e46a571443fe6023e77f8a Mon Sep 17 00:00:00 2001 From: Prashant Mital Date: Mon, 22 Apr 2019 16:37:29 -0500 Subject: [PATCH] BUMP 3.8.0 --- doc/changelog.rst | 7 +++++-- pymongo/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 903106551..a3e18c97c 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -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 `. +- The connection pool now implements a LIFO policy. Issues Resolved ............... diff --git a/pymongo/__init__.py b/pymongo/__init__.py index 11fff3d73..7f7dc3896 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -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): diff --git a/setup.py b/setup.py index 455313b8a..0076be5de 100755 --- a/setup.py +++ b/setup.py @@ -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: