Skip to content

Commit

Permalink
Add a note in Readme about the repo and bump to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
prashnts committed Nov 25, 2019
1 parent a0a75fc commit b903066
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ pbutler - Fix memory leak
Dan Crosta - Convert MurmurHash3 to C from C++
prashnts - Python 3 fork
gaetano-guerriero - Fixed base64 dumps
mizvyt - Fixed missing cython dependency
mizvyt - Fixed missing cython dependency and lots of more improvements
gonzalezzfelipe - Fixed buggy "copy template" method
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.5.0 2019-11-25)
- Add support for Read-Only `bloomfilter` files (@mizvyt) [FEATURE]
- Installation errors due to missing Cython deps. should now be fixed.
(@mizvyt) [BUG]
- Drop `Python <= 3.4` (@mizvyt) [FEATURE]

0.4.19 2019-10-11)
- Ensure that filename is encoded in `copy_template` (@gonzalezzfelipe) [BUG]

Expand Down
15 changes: 15 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@ To install:

and you should be set.

## History and Future

`pybloomfiltermmap` is an excellent `bloomfiler` implementation for `Python 2` by @axiak and contributors.
I (@prashnts) made tiny changes to add support for `Python 3` sometime in 2016 as `pybloomfiltermmap3` on
`PyPI`. Since then through the help of contributors there has been incremental improvements and bugfixes
while maintaining the API in `v0.4.x`. Since Nov. 2019, @mizvyt joined in this project and has made tons
of fixes, and added support for Read-Only bloomfilters (check #12).

We're moving the new changes to `v0.5.x` and onwards. The goal would be to reach stability as well as add
few more APIs to expand upon the use cases. While this won't be guaranteed to not remove or change the
interface, the transition from `v0.4.x` should be quick one liners. Please open an issue if we broke your
build!

Suggestions, bug reports, and/or patches are welcome!


## License

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

setup(
name="pybloomfiltermmap3",
version="0.4.19",
version="0.5.0",
author="Michael Axiak, Rob Stacey, Prashant Sinha",
author_email="[email protected]",
url="https://github.com/prashnts/pybloomfiltermmap3",
Expand Down
2 changes: 1 addition & 1 deletion src/pybloomfilter.pyx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cython: language_level=3

VERSION = (0, 4, 19)
VERSION = (0, 5, 0)
AUTHOR = "Michael Axiak"

__VERSION__ = VERSION
Expand Down

0 comments on commit b903066

Please sign in to comment.