From a4f6b4a5c08a3f6271e45d2ca2812e99d05af12b Mon Sep 17 00:00:00 2001 From: wmymz Date: Fri, 14 Nov 2025 16:00:30 +0800 Subject: [PATCH] =?UTF-8?q?```=20docs(readme):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E5=8F=B7=E8=87=B3=200.1.7=20=E5=B9=B6?= =?UTF-8?q?=E6=B8=85=E7=90=86=E5=86=97=E4=BD=99=E5=AF=BC=E5=85=A5=20(main)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在 pyproject.toml 中将版本号由 0.1.6 更新为 0.1.7。 修订 README.md,删除“最新”标识以保持版本记录一致。 移除 search_context.py 中不必要的 __future__ 导入语句。 ``` --- README.md | 2 +- pyproject.toml | 2 +- src/acemcp/tools/search_context.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7bd6374..79fa6af 100644 --- a/README.md +++ b/README.md @@ -333,7 +333,7 @@ Web 管理界面提供: ## 最近更新 -### 版本 0.1.6(最新) +### 版本 0.1.6 **改进:** - 🔧 **接口请求优化**:https://github.com/qy527145/acemcp/pull/6 diff --git a/pyproject.toml b/pyproject.toml index 2b84017..37deb91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "acemcp" -version = "0.1.6" +version = "0.1.7" description = "MCP server for codebase indexing and semantic search with multi-encoding support and .gitignore integration" readme = "README.md" authors = [ diff --git a/src/acemcp/tools/search_context.py b/src/acemcp/tools/search_context.py index 3562f49..df439f7 100644 --- a/src/acemcp/tools/search_context.py +++ b/src/acemcp/tools/search_context.py @@ -3,7 +3,6 @@ import asyncio from typing import Any -from __future__ import annotations # noqa:F404 from loguru import logger from acemcp.config import get_config