Skip to content

Commit a1830cd

Browse files
committed
Bump version: 1.1.29 → 1.1.30
1 parent 7f2f2f3 commit a1830cd

6 files changed

Lines changed: 307 additions & 299 deletions

File tree

.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.29
2+
current_version = 1.1.30
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.29
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.30
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.29*
24+
*Version: 1.1.30*
2525

2626
## Overview
2727

pyproject.toml

Lines changed: 15 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[build-system]
2-
requires = [ "setuptools>=80.9.0", "wheel",]
2+
requires = [ "setuptools>=80.9.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "vector-mcp"
7-
version = "1.1.29"
7+
version = "1.1.30"
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" }
12-
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: Public Domain", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",]
12+
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.11",
15+
"agent-utilities[embeddings-openai,mcp]>=0.2.12",
1616
"chromadb>=1.5.1",
1717
"markdownify>=1.2.2",
1818
"beautifulsoup4>=4.14.3",
@@ -24,43 +24,35 @@ dependencies = [
2424
"llama-index-core>=0.14.15",
2525
"llama-index-llms-langchain>=0.7.2",
2626
"llama-index-vector-stores-chroma>=0.5.5",
27-
"llama-index-readers-file>=0.5.6",
28-
]
27+
"llama-index-readers-file>=0.5.6"]
2928

3029
[project.optional-dependencies]
3130
postgres = [
3231
"psycopg>=3.3.3",
33-
"llama-index-vector-stores-postgres>=0.7.3",
34-
]
32+
"llama-index-vector-stores-postgres>=0.7.3"]
3533
chromadb = [
3634
"chromadb>=1.5.1",
3735
"llama-index-vector-stores-chroma>=0.5.5",
3836
"opentelemetry-api>=1.39.1",
3937
"opentelemetry-sdk>=1.39.1",
40-
"opentelemetry-exporter-otlp>=1.39.1",
41-
]
38+
"opentelemetry-exporter-otlp>=1.39.1"]
4239
couchbase = [
4340
"couchbase>=4.5.0",
44-
"llama-index-vector-stores-couchbase>=0.6.0",
45-
]
41+
"llama-index-vector-stores-couchbase>=0.6.0"]
4642
qdrant = [
4743
"qdrant-client>=1.16.2",
4844
"fastembed>=0.7.4",
49-
"llama-index-vector-stores-qdrant>=0.9.1",
50-
]
45+
"llama-index-vector-stores-qdrant>=0.9.1"]
5146
mongodb = [
5247
"pymongo>=4.16.0",
53-
"llama-index-vector-stores-mongodb>=0.9.1",
54-
]
48+
"llama-index-vector-stores-mongodb>=0.9.1"]
5549
huggingface = [
5650
"llama-index-embeddings-huggingface>=0.6.1",
57-
"sentence_transformers>=5.2.2",
58-
]
51+
"sentence_transformers>=5.2.2"]
5952
agent = [
60-
"agent-utilities[agent,logfire]>=0.2.11",
61-
]
53+
"agent-utilities[agent,logfire]>=0.2.12"]
6254
all = [
63-
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.29"
55+
"vector-mcp[postgres,chromadb,couchbase,qdrant,mongodb,huggingface,agent]>=1.1.30"
6456
]
6557

6658
[project.scripts]
@@ -71,7 +63,7 @@ vector-agent = "vector_mcp.agent:agent_server"
7163
include-package-data = true
7264

7365
[tool.setuptools.package-data]
74-
vector_mcp = [ "mcp_config.json", "skills/**", "agent/**",]
66+
vector_mcp = [ "mcp_config.json", "agent/**"]
7567

7668
[tool.setuptools.packages.find]
77-
where = [ ".",]
69+
where = [ "."]

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.29"
15+
__version__ = "1.1.30"
1616

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

0 commit comments

Comments
 (0)