Skip to content

Commit e505911

Browse files
committed
update author list, bump version number
1 parent 9583058 commit e505911

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pybloom/pybloom.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@
4242
except ImportError:
4343
raise ImportError('pybloom requires bitarray >= 0.3.4')
4444

45-
__version__ = '1.0.2'
46-
__author__ = "Jay Baird <jay@mochimedia.com>, Bob Ippolito <bob@redivi.com>"
45+
__version__ = '1.0.3'
46+
__author__ = "Jay Baird <jay@mochimedia.com>, Bob Ippolito <bob@redivi.com>,\
47+
Marius Eriksen <marius@monkey.org>, Alex Brassetvik <alex@brasetvik.com>"
4748

4849
def make_hashfuncs(num_slices, num_bits):
4950
if num_bits >= (1 << 31):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from setuptools import setup, find_packages, Extension
88

9-
VERSION = '1.0.2'
9+
VERSION = '1.0.3'
1010
DESCRIPTION = "PyBloom: A Probabilistic data structure"
1111
LONG_DESCRIPTION = """
1212
pybloom is a Python implementation of the bloom filter probabilistic data

0 commit comments

Comments
 (0)