From f27493d8d21e12a81cb9dd12909c6687736a8f59 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 27 May 2025 06:52:22 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.1.0=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 24 ++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..984ed65 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,24 @@ +## v0.2.0 (2025-05-27) + +### Feat + +- add commitizen configuration for automated version management +- fix CI workflow issues and improve release automation + +### Fix + +- **deps**: update dependency fastmcp to ^0.4.0 + +## v0.1.0 (2025-05-27) + +### Feat + +- add MCP configuration examples +- Complete PyPI Query MCP Server Implementation (#3) + +### Fix + +- **deps**: update dependency httpx to ^0.28.0 +- update poetry.lock after removing mypy dependency +- resolve import sorting conflicts between ruff and isort +- correct FastMCP interface usage and resolve lint issues diff --git a/pyproject.toml b/pyproject.toml index c4edb57..2f57f0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pypi-query-mcp-server" -version = "0.1.0" +version = "0.2.0" description = "A Model Context Protocol (MCP) server for querying PyPI package information, dependencies, and compatibility" authors = ["Hal "] readme = "README.md"