Skip to content

Commit

Permalink
Bump version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrecachinas committed Sep 6, 2021
1 parent e88e1bd commit 4fc4fb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hexhamming/python_hexhamming.cc
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ inithexhamming(void)
#else
PyObject *module = Py_InitModule3("hexhamming", CompareMethods, CompareDocstring);
#endif
if (PyModule_AddStringConstant(module, "__version__", "1.4.0")) {
if (PyModule_AddStringConstant(module, "__version__", "2.0.1")) {
Py_XDECREF(module);
INITERROR;
}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="hexhamming",
version="1.4.0",
version="2.0.1",
description="Fast Hamming distance calculation for hexadecimal strings",
url="https://github.com/mrecachinas/hexhamming.git",
long_description=LONG_DESCRIPTION,
Expand Down

0 comments on commit 4fc4fb8

Please sign in to comment.