Skip to content

Commit ea20554

Browse files
committed
Bump version: 0.1.8 → 0.1.9
1 parent 32b629e commit ea20554

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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.8
2+
current_version = 0.1.9
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 curl nano \
5656
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
57-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow searxng-mcp[all]>=0.1.8
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow searxng-mcp[all]>=0.1.9
5858

5959
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.8*
24+
*Version: 0.1.9*
2525

2626
## Overview
2727

pyproject.toml

Lines changed: 1 addition & 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.8"
7+
version = "0.1.9"
88
description = "SearXNG Search Engine MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]

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.8"
41+
__version__ = "0.1.9"
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.8"
29+
__version__ = "0.1.9"
3030

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

0 commit comments

Comments
 (0)