From 34f9f1138c13ed5e76f2562d53c0953ab28c1728 Mon Sep 17 00:00:00 2001 From: Hajime Senuma Date: Tue, 31 Oct 2017 22:06:59 +0900 Subject: [PATCH] bump 2.5.1 --- mmh3module.cpp | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mmh3module.cpp b/mmh3module.cpp index 2447130..2af72f8 100644 --- a/mmh3module.cpp +++ b/mmh3module.cpp @@ -269,7 +269,7 @@ initmmh3(void) if (module == NULL) INITERROR; - PyModule_AddStringConstant(module, "__version__", "2.5"); + PyModule_AddStringConstant(module, "__version__", "2.5.1"); struct module_state *st = GETSTATE(module); diff --git a/setup.py b/setup.py index 3b412ab..c518f0a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ sources = ['mmh3module.cpp', 'MurmurHash3.cpp']) setup(name = 'mmh3', - version = '2.5', + version = '2.5.1', description = 'Python library for MurmurHash (MurmurHash3), a set of fast and robust hash functions.', license = 'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication', author = 'Hajime Senuma',