Skip to content
This repository was archived by the owner on Nov 5, 2019. It is now read-only.

Commit a3fcd99

Browse files
committed
bump 1.3-alpha
1 parent 810e11b commit a3fcd99

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Version 1.3-alpha 4/3/2013
2+
* #58 replica set support
3+
14
Version 1.2.2 1/15/2013
25
* #55 updated tests; enabled travis-ci
36
* #54 cleanup logging

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ Some features are not currently implemented:
4646
* directly interfacing with indexes, dropping collections
4747
* retrieving results in batches instead of all at once
4848
(asyncmongo's nature means that no calls are blocking regardless of the number of results you are retrieving)
49-
* native Replica Set support #16
5049
* tailable cursors #15
5150

5251

asyncmongo/__init__.py

100644100755
+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
raise ImportError("bson library not installed. Install pymongo >= 1.9 https://github.com/mongodb/mongo-python-driver")
2525

2626
# 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')
2929

3030
ASCENDING = 1
3131
"""Ascending sort order."""

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from distutils.core import setup
33

44
# also update version in __init__.py
5-
version = '1.2.2'
5+
version = '1.3-alpha'
66

77
setup(
88
name="asyncmongo",

0 commit comments

Comments
 (0)