Skip to content

Commit f817a51

Browse files
committed
Bump version: 0.1.23 → 0.1.24
1 parent fb1e8a9 commit f817a51

File tree

6 files changed

+10
-10
lines changed

6 files changed

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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ ENV HOST=${HOST} \
5555
RUN apt-get update \
5656
&& 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.23
58+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow searxng-mcp[all]>=0.1.24
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.23*
24+
*Version: 0.1.24*
2525

2626
## Overview
2727

pyproject.toml

Lines changed: 5 additions & 5 deletions
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.23"
7+
version = "0.1.24"
88
description = "SearXNG Search Engine MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -18,20 +18,20 @@ classifiers = [
1818
]
1919
requires-python = ">=3.10"
2020
dependencies = [
21-
"agent-utilities>=0.2.7",
21+
"agent-utilities>=0.2.8",
2222
]
2323

2424
[project.optional-dependencies]
2525
mcp = [
26-
"agent-utilities[mcp]>=0.2.7",
26+
"agent-utilities[mcp]>=0.2.8",
2727
]
2828

2929
agent = [
30-
"agent-utilities[agent,logfire]>=0.2.7",
30+
"agent-utilities[agent,logfire]>=0.2.8",
3131
]
3232

3333
all = [
34-
"agent-utilities[mcp,agent,logfire]>=0.2.7",
34+
"agent-utilities[mcp,agent,logfire]>=0.2.8",
3535
]
3636

3737
[project.scripts]

searxng_mcp/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from agent_utilities.agent_utilities import create_agent_parser, get_mcp_config_path
1313
from agent_utilities.base_utilities import to_integer, to_boolean
1414

15-
__version__ = "0.1.23"
15+
__version__ = "0.1.24"
1616

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

searxng_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
JWTClaimsLoggingMiddleware,
3232
)
3333

34-
__version__ = "0.1.23"
34+
__version__ = "0.1.24"
3535

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

0 commit comments

Comments
 (0)