diff --git a/pyproject.toml b/pyproject.toml index 99806c6..c3ea15c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "mcp-familywall" -version = "0.1.0" +version = "0.1.1" description = "MCP server for Family Wall — read your family's lists and tasks via Claude" readme = "README.md" requires-python = ">=3.12" @@ -15,6 +15,7 @@ keywords = ["mcp", "familywall", "family", "tasks", "lists"] dependencies = [ "mcp[cli]>=1.0", "httpx>=0.27", + "pyyaml>=6.0", "keyring>=25.0", "click>=8.0", "rich>=13.0", diff --git a/src/mcp_familywall/__init__.py b/src/mcp_familywall/__init__.py index 3dc1f76..485f44a 100644 --- a/src/mcp_familywall/__init__.py +++ b/src/mcp_familywall/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1"