Skip to content

Commit c3808a6

Browse files
author
Mike Dirolf
committed
BUMP 1.8.1 - see changelog for details
1 parent 3c7b0f3 commit c3808a6

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

doc/changelog.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
Changes in Version 1.8.1
5+
------------------------
6+
7+
- fixed a typo in the C extension that could cause safe-mode
8+
operations to report a failure (:class:`SystemError`) even when none
9+
occurred.
10+
- added a :meth:`__ne__` implementation to any class where we define
11+
:meth:`__eq__`.
12+
413
Changes in Version 1.8
514
----------------------
615

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"""Profile all operations."""
4040

4141
# Remember to change in setup.py as well!
42-
version = "1.8+"
42+
version = "1.8.1"
4343
"""Current version of PyMongo."""
4444

4545
Connection = PyMongo_Connection

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from distutils.core import Extension
2121

2222
# Remember to change in pymongo/__init__.py as well!
23-
version = "1.8+"
23+
version = "1.8.1"
2424

2525
f = open("README.rst")
2626
try:

0 commit comments

Comments
 (0)