File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
13
Changes in Version 1.8
5
14
----------------------
6
15
Original file line number Diff line number Diff line change 39
39
"""Profile all operations."""
40
40
41
41
# Remember to change in setup.py as well!
42
- version = "1.8+ "
42
+ version = "1.8.1 "
43
43
"""Current version of PyMongo."""
44
44
45
45
Connection = PyMongo_Connection
Original file line number Diff line number Diff line change 20
20
from distutils .core import Extension
21
21
22
22
# Remember to change in pymongo/__init__.py as well!
23
- version = "1.8+ "
23
+ version = "1.8.1 "
24
24
25
25
f = open ("README.rst" )
26
26
try :
You can’t perform that action at this time.
0 commit comments