Skip to content

Commit e08b5cc

Browse files
committed
Bump version: 0.1.12 → 0.1.13
1 parent 59a8f42 commit e08b5cc

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.12
2+
current_version = 0.1.13
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ ENV HOST=${HOST} \
5454
RUN apt-get update \
5555
&& apt-get install -y curl nano \
5656
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
57-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.12
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.13
5858

5959
CMD ["documentdb-mcp"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
![PyPI - Wheel](https://img.shields.io/pypi/wheel/documentdb-mcp)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/documentdb-mcp)
2323

24-
*Version: 0.1.12*
24+
*Version: 0.1.13*
2525

2626
## Overview
2727

documentdb_mcp/documentdb_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from pydantic_ai.ui import SSE_CONTENT_TYPE
3535
from pydantic_ai.ui.ag_ui import AGUIAdapter
3636

37-
__version__ = "0.1.12"
37+
__version__ = "0.1.13"
3838

3939
logging.basicConfig(
4040
level=logging.INFO,

documentdb_mcp/documentdb_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from documentdb_mcp.utils import to_boolean, to_integer
2828
from documentdb_mcp.middlewares import UserTokenMiddleware, JWTClaimsLoggingMiddleware
2929

30-
__version__ = "0.1.12"
30+
__version__ = "0.1.13"
3131

3232
logger = get_logger(name="TokenMiddleware")
3333
logger.setLevel(logging.DEBUG)

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "documentdb-mcp"
7-
version = "0.1.12"
7+
version = "0.1.13"
88
description = "DocumentDB MCP Server & A2A Server. DocumentDB is a MongoDB compatible open source document database built on PostgreSQL."
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -25,15 +25,15 @@ dependencies = [
2525

2626
[project.optional-dependencies]
2727
a2a = [
28-
"pydantic-ai-slim[fastmcp,openai,anthropic,groq,mistral,google,huggingface,a2a,ag-ui,web]>=1.58.0",
28+
"pydantic-ai-slim[fastmcp,openai,groq,anthropic,mistral,google,huggingface,a2a,ag-ui,web]>=1.60.0",
2929
"pydantic-ai-skills>=v0.4.0",
3030
"fastapi>=0.128.0"
3131
]
3232

3333
all = [
3434
"fastmcp>=3.0.0b1",
3535
"eunomia-mcp>=0.3.10",
36-
"pydantic-ai-slim[fastmcp,openai,anthropic,groq,mistral,google,huggingface,a2a,ag-ui,web]>=1.58.0",
36+
"pydantic-ai-slim[fastmcp,openai,groq,anthropic,mistral,google,huggingface,a2a,ag-ui,web]>=1.60.0",
3737
"pydantic-ai-skills>=v0.4.0",
3838
"fastapi>=0.128.0"
3939
]

0 commit comments

Comments
 (0)