From 28df143b5b633e9d473b9b20697868c811d24074 Mon Sep 17 00:00:00 2001 From: Yue Du Date: Thu, 13 Aug 2026 01:56:54 +0000 Subject: [PATCH 1/2] Add _xxhash module docstring --- src/_xxhash.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/_xxhash.c b/src/_xxhash.c index 6bffdf6..d9c24e5 100644 --- a/src/_xxhash.c +++ b/src/_xxhash.c @@ -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, From 68f1000f2dabab7bd395d728b0528c840dc96295 Mon Sep 17 00:00:00 2001 From: Yue Du Date: Thu, 13 Aug 2026 01:58:29 +0000 Subject: [PATCH 2/2] Bump version to 4.0.1.dev0 --- xxhash/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xxhash/version.py b/xxhash/version.py index 189c03b..898e404 100644 --- a/xxhash/version.py +++ b/xxhash/version.py @@ -1 +1 @@ -VERSION = "4.0.0" +VERSION = "4.0.1.dev0"