Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/_xxhash.c
Original file line number Diff line number Diff line change
Expand Up @@ -2246,7 +2246,10 @@ static PyMethodDef methods[] = {
static struct PyModuleDef moduledef = {
PyModuleDef_HEAD_INIT,
"_xxhash",
NULL,
"Low-level C extension for the xxhash package.\n"
"\n"
"Provides the XXH32, XXH64, XXH3_64, and XXH3_128 hash types plus\n"
"their one-shot digest(), intdigest(), and hexdigest() functions.",
0,
methods,
slots,
Expand Down
2 changes: 1 addition & 1 deletion xxhash/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "4.0.0"
VERSION = "4.0.1.dev0"
Loading