------------------- * fixed MSVC compile error on Python 3 (thanks to Chris Gohlke) * add missing start and stop optional parameters to index() method * add examples/compress.py
0.5.1
------------------- * update documentation to use tobytes and frombytes, rather than tostring and fromstring (which are now deprecated) * simplified how tests are run
0.5.0
------------------- * added itersearch method * added Bloom filter example * minor fixes in docstrings, added more tests
0.4.0
------------------- * porting to Python 3.x (Roland Puntaier) * introduced `.tobytes()` and `.frombytes()` (`.tostring()` and `.fromstring()` are now deprecated) * updated development status * added sieve prime number example * moved project to github: https://github.com/ilanschnell/bitarray
0.3.5
------------------- * fixed reference counts bugs * added possibility to slice assign to `True` or `False`, e.g. `a[::3] = True` will set every third element to `True`
0.3.4
------------------- * Made C code less ambiguous, such that the package compiles on Visual Studio, with all tests passing.