Skip to content
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.3.1
# v1.4.0
- 直播服务增加更多的tools支持

# v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "qiniu-mcp-server"
version = "1.3.1"
version = "1.4.0"
description = "A MCP server project of Qiniu."
requires-python = ">=3.12"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/mcp_server/core/version/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

VERSION = '1.3.1'
VERSION = '1.4.0'

Choose a reason for hiding this comment

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

medium

文件末尾缺少一个换行符。为了符合 POSIX 标准并遵循 Python 社区的普遍惯例,所有源文件都应以一个换行符结尾。这可以防止在某些工具或版本控制系统中出现意外行为,例如 git 会显示 \ No newline at end of file1

Suggested change
VERSION = '1.4.0'
VERSION = '1.4.0'

Style Guide References

Footnotes

  1. 虽然 PEP 8 没有明确规定,但以单个换行符结束文件是 Python 社区的一个强约定,也是 POSIX 对文本文件的要求。像 flake8 (W292) 这样的 Linter 会强制执行此规则。

Loading