Skip to content

Commit

Permalink
Fix the version number 2.31 -> 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimes committed Jun 7, 2015
1 parent c80a745 commit 361a373
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mmh3

Python wrapper for MurmurHash (MurmurHash3), a set of fast and robust hash functions.

mmh3 2.31 supports both Python 2.7 and 3.x.
mmh3 2.3.1 supports both Python 2.7 and 3.x.

Usage
-----
Expand All @@ -29,8 +29,8 @@ Sample Usage::

Changes
=======
2.31 (2015-06-07)
-----------------
2.3.1 (2015-06-07)
------------------
* Fix compile errors for gcc >=5.

2.3 (2013-12-08)
Expand Down
2 changes: 1 addition & 1 deletion mmh3module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ initmmh3(void)
if (module == NULL)
INITERROR;

PyModule_AddStringConstant(module, "__version__", "2.31");
PyModule_AddStringConstant(module, "__version__", "2.3.1");

struct module_state *st = GETSTATE(module);

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
sources = ['mmh3module.cpp', 'MurmurHash3.cpp'])

setup(name = 'mmh3',
version = '2.31',
version = '2.3.1',
description = 'Python library for MurmurHash (MurmurHash3), a set of fast and robust hash functions.',
license = 'Public Domain',
author = 'Hajime Senuma',
Expand Down

0 comments on commit 361a373

Please sign in to comment.