From ddab55813f861e0d922c13fd8e9f6f7e1cf724dc Mon Sep 17 00:00:00 2001 From: ericdipietro-collab Date: Wed, 12 Aug 2026 09:34:28 -0600 Subject: [PATCH] release: v0.3.2 Bundles the pre-rollout audit fixes (docs truth, list_questions / update_application wire bugs, release CI gate, atexit cleanup) for publish. pyproject + __init__ kept in lockstep. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_014Bmmmgcida7VUntvBm16Xt --- pyproject.toml | 2 +- searchsteward_mcp/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9057300..1aea374 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "searchsteward-mcp" -version = "0.3.1" +version = "0.3.2" description = "MCP server for SearchSteward — search job matches, read score breakdowns, log applications, and pull negotiation prep from any MCP client." readme = "README.md" requires-python = ">=3.10" diff --git a/searchsteward_mcp/__init__.py b/searchsteward_mcp/__init__.py index 0e1bc26..efa5fbb 100644 --- a/searchsteward_mcp/__init__.py +++ b/searchsteward_mcp/__init__.py @@ -2,5 +2,5 @@ from .client import ApiError, ConfigError, SearchStewardClient -__version__ = "0.3.1" +__version__ = "0.3.2" __all__ = ["SearchStewardClient", "ApiError", "ConfigError"]