From c923da6f6a3a81913d3877b2afd81435e93f36ce Mon Sep 17 00:00:00 2001 From: Marcus van Elst Date: Tue, 14 Apr 2026 12:50:59 +0200 Subject: [PATCH] fix: sync __version__ to 0.2.0 to match pyproject.toml __init__.py was still at 0.1.0 after the pyproject.toml bump in an earlier commit. Co-Authored-By: Claude Sonnet 4.6 --- src/mcp_synology_filestation/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcp_synology_filestation/__init__.py b/src/mcp_synology_filestation/__init__.py index 01aa34e..601a78b 100644 --- a/src/mcp_synology_filestation/__init__.py +++ b/src/mcp_synology_filestation/__init__.py @@ -1,3 +1,3 @@ """MCP server for Synology FileStation.""" -__version__ = "0.1.0" +__version__ = "0.2.0"