From 2519641fa3c7880e1aaff9310709cde99b794764 Mon Sep 17 00:00:00 2001 From: Kai Chappell Date: Sun, 25 May 2025 13:06:51 +0000 Subject: [PATCH] clean up CLI, misc polish - Refactor CLI metric computation to eliminate code duplication - Update version format to PEP 440 compliance (0.1.0.dev0) - Cache Settings instance via @lru_cache for performance - Document composite validators' protocol deviation - Consolidate redundant empty checks in ROUGE-L computation - Add Phase 10 (Portfolio Demos) to implementation plan --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6042295..89dab4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "veritext" -version = "0.1.0-dev" +version = "0.1.0.dev0" description = "Semantic text validation framework" readme = "readme.md" requires-python = ">=3.11"