Skip to content

Commit

Permalink
Update version number to 3.0.0 for upcoming release (#55)
Browse files Browse the repository at this point in the history
* update version number to 3.0.0

* update readme + add keywords

Co-authored-by: Folkvir <[email protected]>
  • Loading branch information
Callidon and folkvir authored Mar 30, 2022
1 parent 9e8565a commit a795cdb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ JavaScript/TypeScript implementation of probabilistic data structures: Bloom Fil
❗️**Compatibility**❗️

- Be carefull when migrating from a version to another.
- Bug fixes were introduced in `1.3.7` and from `1.3.9` to `2.0.0` for hashing and indexing data. Then, you **must re-build completely your filters from start** to be compatible with the new versions.
- Bug fixes were introduced in `1.3.7` and from `1.3.9` to `2.0.0+` for hashing and indexing data. Then, you **must re-build completely your filters from start** to be compatible with the new versions.
- To keep the `breaking changes` rule of npm versions we will make now new `majored versions` since 1.3.9 whenever a modification is done on the hashing/indexing system or breaks the current API.

# Table of contents
Expand Down Expand Up @@ -607,8 +607,8 @@ When submitting pull requests please follow the following guidance:

- Please open pull requests on the develop branch. **Direct contributions to the master branch will be refused without comments**
- Add tests when possible in the `test` folder.
- functions, methods, variables and types must be documented using typedoc annotations
- run `yarn test` (build, lint and run the mocha tests suite)
- Functions, methods, variables and types must be documented using typedoc annotations
- Run `yarn test` (build, lint and run the mocha tests suite)

## References

Expand Down
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bloom-filters",
"version": "2.0.0",
"version": "3.0.0",
"description": "JS implementation of probabilistic data structures: Bloom Filter (and its derived), HyperLogLog, Count-Min Sketch, Top-K and MinHash",
"main": "dist/api.js",
"type": "commonjs",
Expand All @@ -23,12 +23,18 @@
"bloom",
"filter",
"bloom filter",
"invertible bloom filter",
"probabilistic",
"datastructure",
"partitionned bloom filter",
"scalable bloom filter",
"counting bloom filter",
"invertible bloom filter",
"count min sketch",
"cuckoo",
"xor-filter"
"xor",
"minhash",
"top-k",
"hyperloglog"
],
"author": "Thomas Minier <[email protected]>",
"contributors": [
Expand Down

0 comments on commit a795cdb

Please sign in to comment.