forked from piskvorky/sqlitedict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
33 lines (27 loc) · 1.19 KB
/
CHANGELOG.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
Changes
=======
1.6.0, 18/09/2018
* Add Add `get_tablenames` method (@transfluxus, #72)
* Add license files to dist (@toddrme2178, #79)
* Replace `easy_install` -> `pip` in README (@thechief389, #77)
* Update build badge (@menshikh-iv)
1.5.0, 13/02/2017
* Add encode and decode parameters to store json, compressed or pickled objects (@erosennin, #65)
* Python 3.6 fix: commit before turning off synchronous (@bit, #59)
* Update sqlite version to 3.8.2 (@tmylk, #63)
1.4.2, 26/08/2016
* Fix some hangs on closing. Let __enter__ re-open a closed connection. (@ecederstrand, #55)
* Surround table names with quotes. (@Digenis, #50)
1.4.1, 15/05/2016
* Read-only mode (@nrhine1, #37)
* Check file exists before deleting (@adibo, #39)
* AttributeError after SqliteDict is closed (@guyskk, #40)
* Python 3.5 support (@jtatum, #47)
* Pickle when updating with 2-tuples seq (@Digenis, #49)
* Fix exit errors: TypeError("'NoneType' object is not callable",) (@janrygl, #45)
1.4.0
* fix regression where iterating over keys/values/items returned a full list instead of iterator
1.3.0
* improve error handling in multithreading (PR #28); 100% test coverage.
1.2.0
* full python 3 support, continuous testing via Travis CI.