Here you can see the list of key changes between each intbitset release.
- Support Python 3.13 thanks to @eclipseo
- Regenerate C code accordingly
- Drop support for Python 3.8
- Support Python 3.12, macOS 12, 13 and 14
- Regenerate C code accordingly
- Drop support for Python 3.7
- Support Python 3.11
- Regenerate C code accordingly
- Drop support for Python 3.6
- Ayan Sinha Mahapatra @AyanSinhaMahapatra
- Konrad Weihmann @priv-kweihmann
- Build wheels for older Linux platforms and correct Windows and macOS versions.
- Allow empty generator
- Behave like a set when doing comparison with other types
- Regenerate C code with Cython 0.29.28
- Drop nose in favor of pytest
- Drop support for Python 2.7
- Add support for Python 3.9 and 3.10
- Remove outdated Docker files
- Streamline documentation
- Let the compiler decide optimization and support non-X86 builds.
- Pierre Tardy @tardyp
- Allow empty generator
- Regenerate C code with Cython 0.29.21
- Yoan Blanc
- Steven Esser
- Maximiliano Curia
- Jiri Kuncar
- Andrew Murdy
- Philippe Ombredanne
- Tibo Simko
- Max Teegen
- Add support Python 3.5, 3.6, 3.7 and 3.8 and run the tests on these versions
- Fix and improve isdisjoint logic and resource usage
- Regenerate C code with Cython 0.29.14
- Fixes implementation of del x[123] operator which was wrongly defined as __del__ rather than __delitem__. (#40)
- Amends license reST reference from gpl to lgpl to avoid detection as GPL when scanning the docs for licensing information.
- Reorganizes MANIFEST.in and adds missing files. (#28) (#29)
- Removes coverage because it is not really supported for Cython modules.
- Automatically generates intbitset documentation by using Sphinx automodule functionality.
- Overall, amends documentation to be compatible with reStructuredText.
- Amends .update() and corresponding methods to accept also non-intbitset objects, such as lists or sets of integers respecting the set interface.
- Raises TypeError rather than terminating current process with a segmentation fault when None is used on the left side of an operation with an intbitset.
- Initial release of Docker configuration suitable for local developments.
- No longer returns self in fastload().
- Stops using -march=native for compilation, because it makes the compiler to optimize the code for only the currently used processor.
- PyBytes_FromStringAndSize() fix in Python 2
- Adds type checking for &, |, etc. operators. The type of "self" was not checked.
- Adds support for new union() and isdisjoint() set methods.
- Updates intbitset interface to look like set built-in in Python 2.6.
- Supports initialization of an intbitset from a set.
- No crash when intbitset is on rhs.
- Complete Python 3.x support.
- Packaged into a standalone git repository.