Skip to content

Commit c284ea8

Browse files
committed
Bump version: 1.1.26 → 1.1.27
1 parent dcf2636 commit c284ea8

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 = 1.1.26
2+
current_version = 1.1.27
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 libpq-dev \
5656
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
57-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.26
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.27
5858

5959
CMD ["vector-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/vector-mcp)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/vector-mcp)
2323

24-
*Version: 1.1.26*
24+
*Version: 1.1.27*
2525

2626
## Overview
2727

pyproject.toml

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

55
[project]
66
name = "vector-mcp"
7-
version = "1.1.26"
7+
version = "1.1.27"
88
description = "Integrate RAG into AI Agents via MCP Server. Supports multiple Vector database technologies."
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
1111
license = { text = "MIT" }
1212
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: Public Domain", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",]
1313
requires-python = ">=3.10"
1414
dependencies = [
15-
"agent-utilities[embeddings-openai,mcp]>=0.2.8",
15+
"agent-utilities[embeddings-openai,mcp]>=0.2.9",
1616
"chromadb>=1.5.1",
1717
"markdownify>=1.2.2",
1818
"beautifulsoup4>=4.14.3",
@@ -57,10 +57,10 @@ huggingface = [
5757
"sentence_transformers>=5.2.2",
5858
]
5959
agent = [
60-
"agent-utilities[agent,logfire]>=0.2.8",
60+
"agent-utilities[agent,logfire]>=0.2.9",
6161
]
6262
all = [
63-
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.26"
63+
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.27"
6464
]
6565

6666
[project.scripts]

vector_mcp/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from agent_utilities.base_utilities import to_integer, to_boolean
1515
from agent_utilities.agent_utilities import get_mcp_config_path
1616

17-
__version__ = "1.1.26"
17+
__version__ = "1.1.27"
1818

1919
logging.basicConfig(
2020
level=logging.INFO,

vector_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
)
3333
from vector_mcp.retriever.retriever import RAGRetriever
3434

35-
__version__ = "1.1.26"
35+
__version__ = "1.1.27"
3636

3737
logging.basicConfig(
3838
level=logging.DEBUG, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"

0 commit comments

Comments
 (0)