Skip to content

Commit bb15c77

Browse files
committed
Bump version: 0.1.40 → 0.1.41
1 parent 713eefa commit bb15c77

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
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.40
2+
current_version = 0.1.41
33
commit = True
44
tag = True
55

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ repos:
2323
- id: end-of-file-fixer
2424
- id: no-commit-to-branch
2525
- repo: https://github.com/psf/black
26-
rev: 26.3.0
26+
rev: 26.3.1
2727
hooks:
2828
- id: black
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.15.5
30+
rev: v0.15.6
3131
hooks:
3232
- id: ruff
3333
types_or: [ python, pyi, jupyter ]

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 ripgrep tree fd-find 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.40
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.41
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.40*
24+
*Version: 0.1.41*
2525

2626
## Overview
2727

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ services:
2525
- "PROVIDER=openai"
2626
- "LLM_BASE_URL=${LLM_BASE_URL:-http://host.docker.internal:1234/v1}"
2727
- "LLM_API_KEY=${LLM_API_KEY:-llama}"
28-
- "MODEL_ID=${MODEL_ID:-qwen/qwen3.5-35b-a3b}"
28+
- "MODEL_ID=${MODEL_ID:-nvidia/nemotron-3-super}"
2929
- "DEBUG=False"
3030
- "ENABLE_WEB_UI=True"
3131
- "ENABLE_OTEL=True"

documentdb_mcp/agent_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
load_identity,
1212
)
1313

14-
__version__ = "0.1.40"
14+
__version__ = "0.1.41"
1515

1616
logging.basicConfig(
1717
level=logging.INFO,

documentdb_mcp/mcp_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
config,
2222
)
2323

24-
__version__ = "0.1.40"
24+
__version__ = "0.1.41"
2525

2626
logger = get_logger(name="TokenMiddleware")
2727
logger.setLevel(logging.DEBUG)

mcp.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ services:
5757
- "PROVIDER=openai"
5858
- "LLM_BASE_URL=${LLM_BASE_URL:-http://host.docker.internal:1234/v1}"
5959
- "LLM_API_KEY=${LLM_API_KEY:-llama}"
60-
- "MODEL_ID=${MODEL_ID:-qwen/qwen3.5-35b-a3b}"
60+
- "MODEL_ID=${MODEL_ID:-nvidia/nemotron-3-super}"
6161
- "DEBUG=False"
6262
- "ENABLE_WEB_UI=True"
6363
- "ENABLE_OTEL=True"

pyproject.toml

Lines changed: 4 additions & 4 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.40"
7+
version = "0.1.41"
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" }]
@@ -17,16 +17,16 @@ classifiers = [
1717
"Programming Language :: Python :: 3"]
1818
requires-python = ">=3.10"
1919
dependencies = [
20-
"agent-utilities[mcp]>=0.2.26",
20+
"agent-utilities[mcp]>=0.2.27",
2121
"pymongo>=4.0"
2222
]
2323

2424
[project.optional-dependencies]
2525
agent = [
26-
"agent-utilities[agent,logfire]>=0.2.26"]
26+
"agent-utilities[agent,logfire]>=0.2.27"]
2727

2828
all = [
29-
"agent-utilities[mcp,agent,logfire]>=0.2.26"]
29+
"agent-utilities[mcp,agent,logfire]>=0.2.27"]
3030

3131
[project.scripts]
3232
documentdb-mcp = "documentdb_mcp.mcp_server:mcp_server"

0 commit comments

Comments
 (0)