Skip to content

Commit 1c69dd0

Browse files
committed
BUMP 3.8.0
1 parent 3383316 commit 1c69dd0

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

doc/changelog.rst

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

4-
Changes in Version 3.8.0.dev0
5-
-----------------------------
4+
Changes in Version 3.8.0
5+
------------------------
66

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

6568
Issues Resolved
6669
...............

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, 8, 0, '.dev0')
67+
version_tuple = (3, 8, 0)
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
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
_HAVE_SPHINX = False
4141

42-
version = "3.8.0.dev0"
42+
version = "3.8.0"
4343

4444
f = open("README.rst")
4545
try:

0 commit comments

Comments
 (0)