This repository was archived by the owner on Nov 5, 2019. It is now read-only.
File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change
1
+ Version 1.3-alpha 4/3/2013
2
+ * #58 replica set support
3
+
1
4
Version 1.2.2 1/15/2013
2
5
* #55 updated tests; enabled travis-ci
3
6
* #54 cleanup logging
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ Some features are not currently implemented:
46
46
* directly interfacing with indexes, dropping collections
47
47
* retrieving results in batches instead of all at once
48
48
(asyncmongo's nature means that no calls are blocking regardless of the number of results you are retrieving)
49
- * native Replica Set support #16
50
49
* tailable cursors #15
51
50
52
51
Original file line number Diff line number Diff line change 24
24
raise ImportError ("bson library not installed. Install pymongo >= 1.9 https://github.com/mongodb/mongo-python-driver" )
25
25
26
26
# also update in setup.py
27
- version = "1.2.2 "
28
- version_info = (1 , 2 , 2 )
27
+ version = "1.3-alpha "
28
+ version_info = (1 , 3 , 'alpha' )
29
29
30
30
ASCENDING = 1
31
31
"""Ascending sort order."""
Original file line number Diff line number Diff line change 2
2
from distutils .core import setup
3
3
4
4
# also update version in __init__.py
5
- version = '1.2.2 '
5
+ version = '1.3-alpha '
6
6
7
7
setup (
8
8
name = "asyncmongo" ,
You can’t perform that action at this time.
0 commit comments