Skip to content

version to 1.0.0 #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2025
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: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# v1.0.0

- 支持 Kodo 服务
- 支持 Dora 服务
- 支持 CDN 服务
2 changes: 1 addition & 1 deletion mcp_server/core/version/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing module docstring (missing-module-docstring)

Details

lint 解释

这个lint结果表明在文件 mcp_server/core/version/version.py 中缺少模块文档字符串(module docstring)。模块文档字符串是用于描述整个模块的注释,通常放在模块的最开始部分。

错误用法

# mcp_server/core/version/version.py

def get_version():
    return "1.0.0"

在这个例子中,模块 mcp_server.core.version.version 没有包含任何文档字符串。

正确用法

"""
This module provides version information for the MCP server.
"""

# mcp_server/core/version/version.py

def get_version():
    return "1.0.0"

在这个例子中,模块 mcp_server.core.version.version 包含了一个简短的文档字符串,描述了该模块的功能。


💡 以上内容由 AI 辅助生成,如有疑问欢迎反馈交流

VERSION = '0.1.0'
VERSION = '1.0.0'
Loading