Skip to content

Commit ae57256

Browse files
committed
Bump version: 2.13.16 → 2.13.17
1 parent c61ab65 commit ae57256

6 files changed

Lines changed: 7 additions & 7 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 = 2.13.16
2+
current_version = 2.13.17
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN apt update \
5656
&& apt upgrade -y \
5757
&& apt install -y ripgrep tree fd-find curl build-essential libxml2-dev libxslt1-dev python3-dev \
5858
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
59-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow genius-agent>=2.13.16 \
59+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow genius-agent>=2.13.17 \
6060
&& crawl4ai-setup
6161

6262
CMD ["genius-agent"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
![PyPI - Wheel](https://img.shields.io/pypi/wheel/genius-agent)
2121
![PyPI - Implementation](https://img.shields.io/pypi/implementation/genius-agent)
2222

23-
*Version: 2.13.16*
23+
*Version: 2.13.17*
2424

2525
Deploy agents to solve problems using Autogen
2626

genius_agent/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__ = "2.13.16"
15+
__version__ = "2.13.17"
1616

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

genius_agent/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ async def patched_generate_response(
198198
create_mcp_parser,
199199
)
200200

201-
__version__ = "2.13.16"
201+
__version__ = "2.13.17"
202202

203203
logging.basicConfig(
204204
level=logging.INFO,

pyproject.toml

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

55
[project]
66
name = "genius-agent"
7-
version = "2.13.16"
7+
version = "2.13.17"
88
description = "GeniusAgent Search Engine MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -31,7 +31,7 @@ dependencies = [
3131

3232
[project.scripts]
3333
genius-mcp = "genius_agent.mcp:mcp_server"
34-
genius-agent = "genius_agent.genius_agent:agent_server"
34+
genius-agent = "genius_agent.agent:agent_server"
3535

3636
[tool.setuptools.packages.find]
3737
where = ["."]

0 commit comments

Comments
 (0)