Skip to content

Commit 49b7d12

Browse files
committed
Bump version: 0.1.8 → 0.1.9
1 parent 4258ec4 commit 49b7d12

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
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.8
2+
current_version = 0.1.9
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ ENV HOST=${HOST} \
4545
EUNOMIA_TYPE=${EUNOMIA_TYPE} \
4646
EUNOMIA_POLICY_FILE=${EUNOMIA_POLICY_FILE} \
4747
EUNOMIA_REMOTE_URL=${EUNOMIA_REMOTE_URL} \
48+
PYTHONUNBUFFERED=1 \
4849
PATH="/root/.local/bin:/usr/local/bin:${PATH}" \
4950
UV_HTTP_TIMEOUT=3600 \
5051
UV_SYSTEM_PYTHON=1 \
@@ -53,6 +54,6 @@ ENV HOST=${HOST} \
5354
RUN apt-get update \
5455
&& apt-get install -y curl nano \
5556
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
56-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.8
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow documentdb-mcp[all]>=0.1.9
5758

5859
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.8*
24+
*Version: 0.1.9*
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.8"
37+
__version__ = "0.1.9"
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.8"
30+
__version__ = "0.1.9"
3131

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.8"
7+
version = "0.1.9"
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" }]

0 commit comments

Comments
 (0)