-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
136 lines (110 loc) · 3.17 KB
/
ChangeLog
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
CHANGES
=======
0.7.2
-----
* install: add "str" to make numpy import go smoothly
* build: add support for py312
0.7.1
-----
* build: skip musllinux
* fix: memory leak in eytzinger\_binary\_search
0.7.0
-----
* build: update cibuildwheel
* build: add py311 to appveyor
* fix: compile warnings
* perf: faster, more efficient eytzinger sort for mapbuffer
* chore: whitespace
* install: add numpy requirement
* perf: much faster dict2buf
* feat: fast eytzinger sort index creation
* perf: improve memory usage in dict2buf
* build: update tox
0.6.0
-----
* build: update appveyor and GHA. exclude py36
* feat: IntMap simplified structure for u64 -> u64 (#11)
0.5.1
-----
* release(0.5.1): validate uses caching
* perf: allow validate to take advantage of caching
* chore: update ChangeLog
0.5.0
-----
* Format Version 1: Adds crc32c checks. (#8)
* refactor: make mb perf easier tot est
* fix: PROT\_READ is a UNIX parameter (#7)
* fix: allow multiple processes to try working with the file
* docs: show how to use mmap
0.4.0
-----
* test: adds github action
* perf: make robust to network access patterns by caching header
* fix: f was not defined
* refactor: remove unused ffs implementation
0.3.2
-----
* chore: build py39 with appveyor on windows
0.3.1
-----
* chore: fix appveyor artifact collection
0.3.0
-----
* chore: update changelog
* feat: support for mmapped files
* fix: try to make this compile under windows
* chore: update build system
* compile: dont bother with 32 bit windows
* fix: windows uses cl for compilation
* fix: no python dir in this appveyor deployment
0.2.0
-----
* chore: update unit in perf tests from sec to msec
* test: ensure "not in" is tested as well as "in"
* chore: add .DS\_Store to gitignore
* chore: add changelog authors
* chore: add requirements\_dev.txt
* chore: add appveyor
* chore: introduce tox, drop py27
* chore: add build system
* test: check for missing keys
* fix: ensure missing keys return -1
* docs: update perf chart for c-ext
* perf: use C ext to improve index lookup
* test: ensure that empty buffer key access errors
* feat: add \_\_contains\_\_ and get
* docs: add version badge
0.1.1
-----
* fix: explainatory text was in the wrong place
* docs: add benchmark pic
* chore: added benchmarks
* perf: slightly faster mapbuf construction
* docs: discuss design
* docs: link to flexbuffers
* docs: versus flexbuffers
* docs: add installation instructions
0.1.0
-----
* docs: document compress parameter
* docs: show how to use compression and frombytesfn
* docs: fix header example
* docs: example of header
* docs: comment on design
* Eytzinger Ordering (#4)
* perf: reduce memory usage of MapBuffer
* perf: faster compress test
* fix: compute datasize correctly
* fix: .items() and compression
* fix: issues in validation
* redesign: only support uint64 keys for now
* perf: tweaks to speed things up more
* fix: various crashing issues
* feat: add lzma to compression methods
* feat: add magic numbers, format version, and compression support
* chore: restructure, introduce compression, change license to BSD
* feat: add validate function
* docs: update tagline
* docs: add descriptions to functions
* Initial upload of MapBuffer prototype
* Initial commit