Skip to content

Releases: joseph-fox/python-bloomfilter

v3.0.0

22 Jul 09:22
c7fedc5
Compare
Choose a tag to compare

Backward incompatible change: dropped the support of Python 2.6.
Fix an BytesIO issues that prevents Python 2.7 from serialising a filter.

v2.3.2

10 Apr 16:59
14e1922
Compare
Choose a tag to compare

This release allows each filter instance to have the hash function used by the hash maker.

v2.3.1

11 Aug 18:44
Compare
Choose a tag to compare

This release added the union functionality to the scalable Bloom Filter.

v2.2.0

12 Dec 20:04
Compare
Choose a tag to compare

When large integer is passed to the range function, it may cause flow over error. Iterator replaces the range function for Python 2 users.

v2.1.0

17 Feb 11:18
Compare
Choose a tag to compare

The tightening ratio is changed to 0.9, and this ration is consistently used.
Choosing r around 0.8 - 0.9 will result in better average space usage for wide range of growth, therefore the default value of model is set to LARGE_SET_GROWTH.