From 1c0e7044d6a2961cd195e292e3a26bfb32d6fb75 Mon Sep 17 00:00:00 2001 From: Martin Redolatti Date: Tue, 6 Apr 2021 16:43:04 -0300 Subject: [PATCH 1/4] bump cpphash --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a1372a5e..a79dbfb7 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,8 @@ 'test': TESTS_REQUIRES, 'redis': ['redis>=2.10.5'], 'uwsgi': ['uwsgi>=2.0.0'], - 'cpphash': ['mmh3cffi==0.2.0'], + # 'cpphash': ['mmh3cffi==0.2.0'], + 'cpphash': ['mmh3cffi @ git+ssh://git@github.com/splitio/mmh3cffi@5394feecfd7be25a511a1e3f8253fae45c7d6d07#egg=mmh3cffi'] }, setup_requires=['pytest-runner'], classifiers=[ From e3cadc3d2469614c15f5ca8dc1e9f2bea72a09ca Mon Sep 17 00:00:00 2001 From: Martin Redolatti Date: Tue, 6 Apr 2021 17:10:04 -0300 Subject: [PATCH 2/4] use https --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a79dbfb7..eacc3c20 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ 'redis': ['redis>=2.10.5'], 'uwsgi': ['uwsgi>=2.0.0'], # 'cpphash': ['mmh3cffi==0.2.0'], - 'cpphash': ['mmh3cffi @ git+ssh://git@github.com/splitio/mmh3cffi@5394feecfd7be25a511a1e3f8253fae45c7d6d07#egg=mmh3cffi'] + 'cpphash': ['mmh3cffi @ git+https://github.com/splitio/mmh3cffi@5394feecfd7be25a511a1e3f8253fae45c7d6d07#egg=mmh3cffi'] }, setup_requires=['pytest-runner'], classifiers=[ From 8b1b7d519f4484aebed03d3bf001441665aeeeef Mon Sep 17 00:00:00 2001 From: Martin Redolatti Date: Fri, 16 Apr 2021 10:46:59 -0300 Subject: [PATCH 3/4] prepare for release --- CHANGES.txt | 3 +++ setup.py | 3 +-- splitio/version.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index dab9cbe9..b309cb76 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,6 @@ +8.4.1 (Apr 16, 2021) + - Bumped mmh3cffi dependency which now required c99 flag to build. + 8.4.0 (Jan 6, 2021) - Added RecordStats for supporting pipelined recording in redis when treatment call is made. - Added hooks support for preforked servers. diff --git a/setup.py b/setup.py index eacc3c20..1aba87f1 100644 --- a/setup.py +++ b/setup.py @@ -41,8 +41,7 @@ 'test': TESTS_REQUIRES, 'redis': ['redis>=2.10.5'], 'uwsgi': ['uwsgi>=2.0.0'], - # 'cpphash': ['mmh3cffi==0.2.0'], - 'cpphash': ['mmh3cffi @ git+https://github.com/splitio/mmh3cffi@5394feecfd7be25a511a1e3f8253fae45c7d6d07#egg=mmh3cffi'] + 'cpphash': ['mmh3cffi==0.2.1'], }, setup_requires=['pytest-runner'], classifiers=[ diff --git a/splitio/version.py b/splitio/version.py index b0193b93..b8f97ce9 100644 --- a/splitio/version.py +++ b/splitio/version.py @@ -1 +1 @@ -__version__ = '8.4.0' +__version__ = '8.4.1' From 5319b0d309058437992af29d149fd2f813953a7c Mon Sep 17 00:00:00 2001 From: Martin Redolatti Date: Fri, 16 Apr 2021 10:47:41 -0300 Subject: [PATCH 4/4] typo --- CHANGES.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index b309cb76..bcd0ae30 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ 8.4.1 (Apr 16, 2021) - - Bumped mmh3cffi dependency which now required c99 flag to build. + - Bumped mmh3cffi dependency which now requires c99 flag to build. 8.4.0 (Jan 6, 2021) - Added RecordStats for supporting pipelined recording in redis when treatment call is made.