Skip to content

Commit 4068cd6

Browse files
committed
Bump version: 0.1.16 → 0.1.17
1 parent 3c36c4f commit 4068cd6

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
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.16
2+
current_version = 0.1.17
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ ENV HOST=${HOST} \
5353
UV_COMPILE_BYTECODE=1
5454

5555
RUN apt-get update \
56-
&& apt-get install -y curl nano \
56+
&& apt-get install -y ripgrep tree fd-find curl nano \
5757
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
58-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow searxng-mcp[all]>=0.1.16
58+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow searxng-mcp[all]>=0.1.17
5959

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

24-
*Version: 0.1.16*
24+
*Version: 0.1.17*
2525

2626
## Overview
2727

pyproject.toml

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

55
[project]
66
name = "searxng-mcp"
7-
version = "0.1.16"
7+
version = "0.1.17"
88
description = "SearXNG Search Engine MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -17,6 +17,9 @@ classifiers = [
1717
"Programming Language :: Python :: 3",
1818
]
1919
requires-python = ">=3.10"
20+
dependencies = [
21+
"tree-sitter>=0.23.2",
22+
]
2023

2124
[project.optional-dependencies]
2225
mcp = [

searxng_mcp/searxng_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from pydantic_ai.ui import SSE_CONTENT_TYPE
3939
from pydantic_ai.ui.ag_ui import AGUIAdapter
4040

41-
__version__ = "0.1.16"
41+
__version__ = "0.1.17"
4242

4343
logging.basicConfig(
4444
level=logging.INFO,

searxng_mcp/searxng_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from searxng_mcp.utils import to_boolean, to_integer
2727
from searxng_mcp.middlewares import UserTokenMiddleware, JWTClaimsLoggingMiddleware
2828

29-
__version__ = "0.1.16"
29+
__version__ = "0.1.17"
3030

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

0 commit comments

Comments
 (0)