From 2d5f7e241deac9b3b21329247494c65b129bfa4f Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Thu, 12 Feb 2026 20:24:40 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20v2.0.11:=20Fix=20pdf=5Fto=5Fmark?= =?UTF-8?q?down=20broken=20image=20references?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- src/mcp_pdf/server.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b9a79f7..336ae2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mcp-pdf" -version = "2.0.10" +version = "2.0.11" description = "Secure FastMCP server for comprehensive PDF processing - text extraction, OCR, table extraction, forms, annotations, and more" authors = [{name = "Ryan Malloy", email = "ryan@malloys.us"}] readme = "README.md" diff --git a/src/mcp_pdf/server.py b/src/mcp_pdf/server.py index 0336405..c0cd3d8 100644 --- a/src/mcp_pdf/server.py +++ b/src/mcp_pdf/server.py @@ -107,7 +107,7 @@ class PDFServerOfficial: """Get detailed server information including mixins and configuration""" return { "server_name": "MCP PDF Tools (Official FastMCP Pattern)", - "version": "2.0.10", + "version": "2.0.11", "architecture": "Official FastMCP Mixin Pattern", "total_mixins": len(self.mixins), "mixins": [ @@ -162,7 +162,7 @@ def main(): from importlib.metadata import version package_version = version("mcp-pdf") except: - package_version = "2.0.10" + package_version = "2.0.11" logger.info(f"🎬 MCP PDF Tools Server v{package_version} (Official Pattern)")