Skip to content

Commit 85ddc0f

Browse files
committed
Bump version: 0.2.27 → 0.2.28
1 parent eb6541d commit 85ddc0f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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.2.27
2+
current_version = 0.2.28
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ ENV HOST=${HOST} \
5454
RUN apt-get update \
5555
&& apt-get install -y ripgrep tree fd-find 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 arr-mcp[all]>=0.2.27
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow arr-mcp[all]>=0.2.28
5858

5959
# Default command (can be overridden)
6060
CMD ["arr-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/arr-mcp)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/arr-mcp)
2323

24-
*Version: 0.2.27*
24+
*Version: 0.2.28*
2525

2626
## Overview
2727

arr_mcp/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
load_identity,
1212
)
1313

14-
__version__ = "0.2.27"
14+
__version__ = "0.2.28"
1515

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

arr_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from arr_mcp.seerr_api import Api as SeerrApi
3737
from arr_mcp.chaptarr_api import Api as ChaptarrApi
3838

39-
__version__ = "0.2.27"
39+
__version__ = "0.2.28"
4040

4141
logger = get_logger(name="ArrMCP")
4242
logger.setLevel(logging.INFO)

pyproject.toml

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

55
[project]
66
name = "arr-mcp"
7-
version = "0.2.27"
7+
version = "0.2.28"
88
description = "Arr Suite MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Genius", email = "genius@example.com" }]
@@ -24,13 +24,13 @@ dependencies = [
2424

2525
[project.optional-dependencies]
2626
mcp = [
27-
"agent-utilities[mcp]>=0.2.13"]
27+
"agent-utilities[mcp]>=0.2.14"]
2828

2929
agent = [
30-
"agent-utilities[agent,logfire]>=0.2.13"]
30+
"agent-utilities[agent,logfire]>=0.2.14"]
3131

3232
all = [
33-
"agent-utilities[mcp,agent,logfire]>=0.2.13"]
33+
"agent-utilities[mcp,agent,logfire]>=0.2.14"]
3434

3535
[project.scripts]
3636
arr-mcp = "arr_mcp.mcp:mcp_server"

0 commit comments

Comments
 (0)