Skip to content

Releases: mpope9/exor_filter

v0.8.2

02 Dec 15:49
Compare
Choose a tag to compare

Added in this release:

  • Support for M1 Macs.

v0.8.1

20 Nov 21:37
Compare
Choose a tag to compare

Included In This Release

  • Merging upstream xorfilter.h changes.
  • Updating rebar3 version.

v0.8.0

23 Jan 03:29
8f875bc
Compare
Choose a tag to compare

This release fixing non-deterministic filter allocation. While not an issue with querying, this fixes issues when trying to compare two filters for equality generated from the same inputs from to_bin. Thanks to @JayKickliter !

v0.7.1

22 Jan 02:55
7ad70a2
Compare
Choose a tag to compare

Fixing undefined behavior, and possible segfaults. Courtesy of @JayKickliter 😸

v0.7.0

12 Dec 23:28
037900f
Compare
Choose a tag to compare

This adds support for deduplication for the partial initialization API. Under the hood, it utilizes a compressed bitset, used by git.

v0.6.0

08 Nov 21:13
8dd3baa
Compare
Choose a tag to compare
  • Adding support for incremental initialization api.
    • A more space efficient way to use the library.
    • Warning: currently does not support deduplication.
  • Various bug fixes.
  • Fixing test macros.

v0.5.2

24 Oct 18:19
Compare
Choose a tag to compare

Fix nif compile on Erlang 23 by removing erl_interface from c_src Makefile.

v0.5.1

24 Oct 18:17
7b7493b
Compare
Choose a tag to compare

Use of contains with a binary created from to_bin.

v0.5.0

24 Feb 04:03
74f36f5
Compare
Choose a tag to compare

Addition of serialization / deserialization of the xor filters to get them in pure binary. Thanks to @Vagabond !

v0.4.2

22 Feb 22:01
85814a4
Compare
Choose a tag to compare

Included in this release:

Increased memory management, courtesy of @Vagabond