Skip to content

Commit bdb996d

Browse files
schlpbchclaude
andcommitted
Release v3.3.2: Dependency updates
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a2ba1a4 commit bdb996d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "open-meteo-mcp"
3-
version = "3.3.1"
3+
version = "3.3.2"
44
description = "MCP server providing weather and snow conditions via Open-Meteo API"
55
requires-python = ">=3.11"
66
dependencies = [

src/open_meteo_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Open Meteo MCP Server - Weather and snow conditions via Open-Meteo API."""
22

3-
__version__ = "3.3.1"
3+
__version__ = "3.3.2"

src/open_meteo_mcp/api/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def create_app() -> FastAPI:
1616
app = FastAPI(
1717
title="Open Meteo MCP API",
1818
description="REST API for weather, snow conditions, air quality, and location search",
19-
version="3.3.1",
19+
version="3.3.2",
2020
docs_url="/api/docs",
2121
openapi_url="/api/openapi.json",
2222
)
@@ -52,7 +52,7 @@ async def health_check() -> JSONResponse:
5252
status_code=200,
5353
content={
5454
"status": "healthy",
55-
"version": "3.3.1",
55+
"version": "3.3.2",
5656
"timestamp": datetime.now().isoformat(),
5757
},
5858
)
@@ -69,7 +69,7 @@ async def root() -> JSONResponse:
6969
status_code=200,
7070
content={
7171
"message": "Open Meteo MCP REST API",
72-
"version": "3.3.1",
72+
"version": "3.3.2",
7373
"docs": "/api/docs",
7474
"openapi": "/api/openapi.json",
7575
"health": "/api/health",

0 commit comments

Comments
 (0)