-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES.TXT
45 lines (27 loc) · 1.17 KB
/
CHANGES.TXT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Version 0.2.3
-------------
* Corrected issue with query sorts.
Version 0.1.4
-------------
* Upgraded to latest version of Mongo C driver. (Changed signature for mongo_connect() function.)
Version 0.1.3
-------------
* Added support for sorting queries and providing hints. (See Monary.query method.)
* Added simple unit tests for Monary.authenticate.
Version 0.1.2
-------------
* Added support for a "date" type which populates an array of int64 values
from a BSON date (date value is milliseconds since Jan 1, 1970).
* Improved column tests.
* Fixed a minor bug in datehelper.mongodelta_to_timedelta(), which was not accepting
a numpy.int64 instance as the date value. (Now we simply convert the incoming arg to a Python int.)
* Added strict argument checks to datehelper functions.
Version 0.1.1
-------------
* Bugfix release for issue with ObjectIDs containing NULL bytes
(ObjectIDs now use a 12-byte 'void' array type in numeric python.)
* Support for int8, int16, int64, and float32 column types.
* Basic tests for all column types (requires nosetests).
Version 0.1
-----------
* Initial Release