Skip to content

Commit b84f494

Browse files
committed
Bump version: 1.1.35 → 1.1.36
1 parent b4e5c95 commit b84f494

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.35
2+
current_version = 1.1.36
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.35
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.36
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.35*
24+
*Version: 1.1.36*
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.35"
7+
version = "1.1.36"
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.17",
15+
"agent-utilities[embeddings-openai,mcp]>=0.2.18",
1616
"chromadb>=1.5.1",
1717
"markdownify>=1.2.2",
1818
"beautifulsoup4>=4.14.3",
@@ -50,9 +50,9 @@ huggingface = [
5050
"llama-index-embeddings-huggingface>=0.6.1",
5151
"sentence_transformers>=5.2.2"]
5252
agent = [
53-
"agent-utilities[agent,logfire]>=0.2.17"]
53+
"agent-utilities[agent,logfire]>=0.2.18"]
5454
all = [
55-
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.35"
55+
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.36"
5656
]
5757

5858
[project.scripts]

vector_mcp/agent.py

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

15-
__version__ = "1.1.35"
15+
__version__ = "1.1.36"
1616

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

vector_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
)
2222
from vector_mcp.retriever.retriever import RAGRetriever
2323

24-
__version__ = "1.1.35"
24+
__version__ = "1.1.36"
2525

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

0 commit comments

Comments
 (0)