Skip to content

Commit

Permalink
Bump version to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
farhadi committed Mar 14, 2021
1 parent f9db0c8 commit 3fd7268
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cuckoo_filter.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{application, cuckoo_filter, [
{description,
"A high-performance, concurrent, and mutable Cuckoo Filter for Erlang and Elixir"},
{vsn, "0.3.0"},
{vsn, "0.3.1"},
{registered, []},
{applications, [
kernel,
Expand Down
2 changes: 1 addition & 1 deletion src/cuckoo_filter.erl
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ add_hash(FilterName, Hash) ->
%% is returned as `{ok, {Index, Fingerprint}}'. In this case, elements are not
%% relocated, and no lock is acquired.
%%
%% Forced insertion can only be used with `max_evictions` set to 0.
%% Forced insertion can only be used with `max_evictions' set to 0.
-spec add
(cuckoo_filter() | filter_name(), term(), timeout()) ->
ok | {error, not_enough_space | timeout};
Expand Down

0 comments on commit 3fd7268

Please sign in to comment.