Skip to content

Commit 2740392

Browse files
committed
Bump version: 0.1.19 → 0.1.20
1 parent ec468e6 commit 2740392

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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.19
2+
current_version = 0.1.20
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 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.19
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.20
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.19*
24+
*Version: 0.1.20*
2525

2626
## Overview
2727

documentdb_mcp/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from agent_utilities.agent_utilities import create_agent_parser, get_mcp_config_path
1313
from agent_utilities.base_utilities import to_integer, to_boolean
1414

15-
__version__ = "0.1.19"
15+
__version__ = "0.1.20"
1616

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

documentdb_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
JWTClaimsLoggingMiddleware,
3333
)
3434

35-
__version__ = "0.1.19"
35+
__version__ = "0.1.20"
3636

3737
logger = get_logger(name="TokenMiddleware")
3838
logger.setLevel(logging.DEBUG)

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.19"
7+
version = "0.1.20"
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" }]
@@ -18,17 +18,17 @@ classifiers = [
1818
]
1919
requires-python = ">=3.10"
2020
dependencies = [
21-
"agent-utilities[mcp]>=0.2.6",
21+
"agent-utilities[mcp]>=0.2.7",
2222
"pymongo>=4.0"
2323
]
2424

2525
[project.optional-dependencies]
2626
agent = [
27-
"agent-utilities[agent,logfire]>=0.2.6",
27+
"agent-utilities[agent,logfire]>=0.2.7",
2828
]
2929

3030
all = [
31-
"agent-utilities[mcp,agent,logfire]>=0.2.6",
31+
"agent-utilities[mcp,agent,logfire]>=0.2.7",
3232
]
3333

3434
[project.scripts]

0 commit comments

Comments
 (0)