Skip to content

Commit 3c4c9b4

Browse files
committed
update changes, bump version, restore setup.py to point to correct murmurhash repo
1 parent b84d495 commit 3c4c9b4

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
6.0.0 (Aug 29, 2018)
2+
- Add support for redis sentinel
3+
- UWSGI performance boost (breaking change)
4+
- Add support for more c++ compilers in windows for mumur hash extension
5+
5.5.0 (Feb 28, 2018)
6+
- Add support for .track
17
5.4.3 (Jan 7, 2018)
28
- Move impressions listener to it's own thread
39
- Fix bug in localhost client

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
if version_info < (3,):
1616
tests_require += ['mock']
17-
install_requires += ['six>=1.10.0', 'futures>=3.0.5', 'enum34>=1.1.5', 'mmh3']
17+
install_requires += ['six>=1.10.0', 'futures>=3.0.5', 'enum34>=1.1.5']
1818

1919
with open(path.join(path.abspath(path.dirname(__file__)),
2020
'splitio', 'version.py')) as f:
@@ -31,12 +31,11 @@
3131
license='Apache License 2.0',
3232
install_requires=install_requires,
3333
tests_require=tests_require,
34-
dependency_links=['http://github.com/splitio/mmh3/tarball/bug/compilerCompatibility#egg=package-1.0'],
3534
extras_require={
3635
'test': tests_require,
3736
'redis': ['redis>=2.10.5', 'jsonpickle>=0.9.3'],
3837
'uwsgi': ['uwsgi>=2.0.0', 'jsonpickle>=0.9.3'],
39-
# 'cpphash': ['splitmmh3'] TODO: REVERT THIS BEFORE RELEASE!
38+
'cpphash': ['splitmmh3']
4039
},
4140
setup_requires=['nose'],
4241
classifiers=[

splitio/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '5.6.0-rc1'
1+
__version__ = '6.0.0'

0 commit comments

Comments
 (0)