Bump version to 2025.09.27.4 for PyPI release with revolutionary hybrid circuit design

This commit is contained in:
Ryan Malloy 2025-09-27 21:38:24 -06:00
parent fbc65d0282
commit 41368561da
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "mcp-arduino"
version = "2025.09.27.3" # Smart port conflict detection + 70+ tools
version = "2025.09.27.4" # Revolutionary hybrid elicitation + sampling circuit design
authors = [
{ name="Ryan Malloy", email="ryan@supported.systems" },
]

View File

@ -189,7 +189,7 @@ def create_server(config: ArduinoServerConfig | None = None) -> FastMCP:
from importlib.metadata import version
package_version = version("mcp-arduino")
except:
package_version = "2025.09.26"
package_version = "2025.09.27.4"
# Create the FastMCP server instance
mcp = FastMCP(
@ -413,7 +413,7 @@ def main():
from importlib.metadata import version
package_version = version("mcp-arduino")
except Exception:
package_version = "2025.09.27.2"
package_version = "2025.09.27.4"
print(f"mcp-arduino {package_version}")
sys.exit(0)