Skip to content

Commit b61759c

Browse files
committed
version bump
1 parent 59b336d commit b61759c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Bloom Filter
22

3+
### Version 1.9.1
4+
* Improved use of `const` keyword
5+
* Minor updates
6+
37
### Version 1.9.0
48
* ***BACKWARD INCOMPATIBLE CHANGES***
59
* **NOTE:** Breaks backwards compatibility with previously exported blooms using the default hash!

src/bloom.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*** Author: Tyler Barrus
44
55
***
6-
*** Version: 1.9.0
6+
*** Version: 1.9.1
77
***
88
*** License: MIT 2015
99
***

src/bloom.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*** Author: Tyler Barrus
66
77
***
8-
*** Version: 1.9.0
8+
*** Version: 1.9.1
99
*** Purpose: Simple, yet effective, bloom filter implementation
1010
***
1111
*** License: MIT 2015
@@ -29,10 +29,10 @@ extern "C" {
2929
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
3030
#endif
3131

32-
#define BLOOMFILTER_VERSION "1.8.2"
32+
#define BLOOMFILTER_VERSION "1.9.1"
3333
#define BLOOMFILTER_MAJOR 1
34-
#define BLOOMFILTER_MINOR 8
35-
#define BLOOMFILTER_REVISION 2
34+
#define BLOOMFILTER_MINOR 9
35+
#define BLOOMFILTER_REVISION 1
3636

3737
#define BLOOM_SUCCESS 0
3838
#define BLOOM_FAILURE -1

0 commit comments

Comments
 (0)