File: ChangeLog

package info (click to toggle)
libbloom 2.0-0.2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,396 kB
  • sloc: ansic: 918; makefile: 136; perl: 85; sh: 8
file content (78 lines) | stat: -rw-r--r-- 2,212 bytes parent folder | download
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
2022-09-17  Jyri J. Virkki  <jyri@virkki.com>

	* Version 2.0
	* The following incompatible changes are introduced in this
	  new major release:
	  - Removed deprecated bloom_init_size() function.
	    It has not been needed since v1.1 but was kept around
	    for compatibility.
	  - Types within struct bloom have changed. Any client code
	    which accesses these directly may need to be updated.
	    Typical client code which does not access the struct bloom
	    fields directly is not impacted by the change.
	* Added bloom_save() and bloom_load()
	* Added bloom_merge()
	* Fix bitfield size computation when number of elements is large.
	* Deprecated bloom_init(). Please migrate to bloom_init2().
	  - bloom_init() will not be removed until at least v3.0
	    so existing code will continue to work as-is. But to take
	    advantage of the higher size limits, migrate to bloom_init2().


2019-02-17  Jyri J. Virkki  <jyri@virkki.com>

	* Version 1.6
	* Added a simple bloom_reset() function.
	* Peformance boost on membership test if element not present.
	* Test cleanup and coverage.


2017-06-08  Jyri J. Virkki  <jyri@virkki.com>

	* Version 1.5
	* Make the bloom filter minimum capacity be 1000 elements.
	* Build cleanup.
	* Fix FTBFS issue on GNU/kFreeBSD and Hurd.


2017-02-23  Jyri J. Virkki  <jyri@virkki.com>

	* Version 1.4
	* Build cleanup on Solaris and OpenBSD.
	* Debian packaging support changes.


2016-10-18  Jyri J. Virkki  <jyri@virkki.com>

	* Version 1.3


2016-10-13  Jyri J. Virkki  <jyri@virkki.com>

	* Version 1.2
	* Deprecate bloom_init_size as the cache_size arg is no longer used.
	* Remove the buckets optimization introduced earlier.
	  While faster, it caused collisions to fluctuate, sometimes well
	  over the specified error rate.
	* Export the c function symbols for the C++ compiler.
	* Build static and dynamic libraries.
	* Build cleanup on OpenBSD, Solaris.
	* Test cleanup.


2015-09-18  Jyri J. Virkki  <jyri@virkki.com>

	* Version 1.1
	* Preserved some reports.


2015-09-17  Jyri J. Virkki  <jyri@virkki.com>

	* Version 1.0
	* Calling the work so far as version 1.0


2012-06-16  Jyri J. Virkki  <jyri@virkki.com>

	* Version 0.1
	* Initial working code.