From cf740bf5c9b70d9239b0872fdea09efedb9d9625 Mon Sep 17 00:00:00 2001 From: zTgx <747674262@qq.com> Date: Mon, 13 Apr 2026 00:19:48 +0800 Subject: [PATCH 1/2] refactor(python): add underscore prefix to internal module function - Add underscore prefix to `vectorless` function to indicate it's internal - Function is now `_vectorless` to follow Rust naming conventions for private items --- python/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/lib.rs b/python/src/lib.rs index d4e2f972..a8b32439 100644 --- a/python/src/lib.rs +++ b/python/src/lib.rs @@ -1069,7 +1069,7 @@ impl PyEngine { /// print(answer.single().content) /// ``` #[pymodule] -fn vectorless(m: &Bound<'_, PyModule>) -> PyResult<()> { +fn _vectorless(m: &Bound<'_, PyModule>) -> PyResult<()> { m.add_class::()?; m.add_class::()?; m.add_class::()?; From 271955a479a1445591e33dc4870d9fc6317c2d44 Mon Sep 17 00:00:00 2001 From: zTgx <747674262@qq.com> Date: Mon, 13 Apr 2026 00:21:23 +0800 Subject: [PATCH 2/2] chore(release): bump version from 0.1.2 to 0.1.3 - Update project version in pyproject.toml - Prepare for new release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 99ff1191..6c9d78d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "vectorless" -version = "0.1.2" +version = "0.1.3" description = "Hierarchical document intelligence without vectors" readme = "README.md" requires-python = ">=3.9"