Releases: adulau/python-bloomfilter
python-bloomfilter v2.1 released
python-bloomfilter v2.1 released (2022-06-11)
New
-
[workflow] added. [Alexandre Dulaunoy]
-
[Bloomfilter] nstars - cardinality estimation in BF and intersection. [Alexandre Dulaunoy]
-
[ScalableBloomFilter] add copy and union. [Alexandre Dulaunoy]
Changes
-
[doc] updated. [Alexandre Dulaunoy]
-
[config] 2.1 release. [Alexandre Dulaunoy]
-
[pybloom] preparing for 2.1 release. [Alexandre Dulaunoy]
-
[doc] updated. [Alexandre Dulaunoy]
-
[pybloom] removed old Python 2 utils. [Alexandre Dulaunoy]
-
[test]
black -S
[Alexandre Dulaunoy] -
[workflow] run tests. [Alexandre Dulaunoy]
-
[tests] fix the lib location and removal of the old Python 2 compatibility. [Alexandre Dulaunoy]
-
[pybloom] remove old relicate from Python 2 compatibility. [Alexandre Dulaunoy]
-
[pybloom] remove old Python 2 test. [Alexandre Dulaunoy]
-
[workflow] updated with recent version of Python. [Alexandre Dulaunoy]
-
[tools] remove old Python 2. [Alexandre Dulaunoy]
-
[pybloom] add to_bytes. [Alexandre Dulaunoy]
-
[pybloom]
black -S
[Alexandre Dulaunoy] -
[doc] add the reason of the this fork. [Alexandre Dulaunoy]
-
[setup] updated url. [Alexandre Dulaunoy]
-
[requirements] fixes. [Alexandre Dulaunoy]
Fix
-
[python] typo. [Alexandre Dulaunoy]
-
[lib] typo fixed. [Alexandre Dulaunoy]
-
[pybloom] bitarray updated. [Alexandre Dulaunoy]
Other
-
Set theme jekyll-theme-cayman. [Alexandre Dulaunoy]
-
Dependency fix: code update due to bitarray>V1.5.1. [Quinn Sheng]
-
Merge pull request jaybaird#16 from holbech/setup-py-fix. [Jay Baird]
setup.py change for pip-interoperability
-
Changed setup.py and init.py so setup.py install results are in line with examples given in readme. [Søren Holbech]
-
Merge pull request jaybaird#14 from Bachmann1234/python3-no-six. [Jay Baird]
Add support for Python 3
-
Add python3 support. [bachmann]
-
Set up tox to simplify testing multiple pythons. [bachmann]
-
Fix Travis build status image link. [Jay Baird]
-
Switch to using restructured text for README, add Travis CI support. [Jay Baird]
-
Merge pull request jaybaird#11 from grandinquisitor/master. [Jay Baird]
Implement make_hashes as a generator
-
Convert some temporary list expressions to generators. [nick pisarro]
-
Fix count logic from previous. [nick pisarro]
-
Implement make_hashes as a generator. [nick pisarro]
Can eliminate hashes if key is found early. Result is 30% faster.
-
Merge pull request jaybaird#12 from Bachmann1234/write-bytes. [Jay Baird]
Add ability to write to StringIO and cStringIO objects
-
Add myself to authors file. [bachmann]
-
Add the ability to serialize to StringIO and cStringIO. [bachmann]
-
Add .venv to .gitignore so I can have a virtual environment. [bachmann]
-
Merge pull request jaybaird#10 from rabidsnail/patch-1. [Jay Baird]
Fix docstring of BloomFilter.intersection
-
Fix docstring of BloomFilter.intersection. [Bob Poekert]
The docstring says union when it means intersection.