------------------- * 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.
0.3.3
------------------- * Made changes to the C code to allow compilation with more compilers. Compiles on Visual Studio, although there are still a few tests failing.
0.3.2
------------------- * Added sequential search method. * The special method `__contains__` now also takes advantage of the sequential search.
0.3.1
------------------- * Simplified state information for pickling. Argument for count is now optional, defaults to True. Fixed typos.