Skip to content

Commit 35df1d5

Browse files
committed
Bump version: 0.2.24 → 0.2.25
1 parent f050f32 commit 35df1d5

File tree

13 files changed

+23
-33
lines changed

13 files changed

+23
-33
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.24
2+
current_version = 0.2.25
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.24
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow arr-mcp[all]>=0.2.25
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.24*
24+
*Version: 0.2.25*
2525

2626
## Overview
2727

arr_mcp/agent.py

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@
44
import logging
55

66
from agent_utilities import (
7+
build_system_prompt_from_workspace,
8+
create_agent_parser,
79
create_agent_server,
810
initialize_workspace,
911
load_identities,
10-
build_system_prompt_from_workspace,
1112
)
12-
from agent_utilities.agent_utilities import create_agent_parser, get_mcp_config_path
13-
from agent_utilities.base_utilities import to_integer, to_boolean
1413

15-
__version__ = "0.2.24"
14+
__version__ = "0.2.25"
1615

1716
logging.basicConfig(
1817
level=logging.INFO,
@@ -50,20 +49,6 @@
5049
if tag not in ["supervisor", "default"] and tag in active_mcp_servers
5150
}
5251

53-
DEFAULT_HOST = os.getenv("HOST", "0.0.0.0")
54-
DEFAULT_PORT = to_integer(os.getenv("PORT", "9000"))
55-
DEFAULT_DEBUG = to_boolean(os.getenv("DEBUG", "False"))
56-
DEFAULT_PROVIDER = os.getenv("PROVIDER", "openai")
57-
DEFAULT_MODEL_ID = os.getenv("MODEL_ID", "qwen/qwen3-coder-next")
58-
DEFAULT_LLM_BASE_URL = os.getenv("LLM_BASE_URL", "http://host.docker.internal:1234/v1")
59-
DEFAULT_LLM_API_KEY = os.getenv("LLM_API_KEY", "ollama")
60-
DEFAULT_MCP_URL = os.getenv("MCP_URL", None)
61-
DEFAULT_MCP_CONFIG = os.getenv("MCP_CONFIG", get_mcp_config_path())
62-
DEFAULT_CUSTOM_SKILLS_DIRECTORY = os.getenv("CUSTOM_SKILLS_DIRECTORY", None)
63-
DEFAULT_ENABLE_WEB_UI = to_boolean(os.getenv("ENABLE_WEB_UI", "False"))
64-
DEFAULT_ENABLE_OTEL = to_boolean(os.getenv("ENABLE_OTEL", "False"))
65-
DEFAULT_SSL_VERIFY = to_boolean(os.getenv("SSL_VERIFY", "True"))
66-
6752

6853
def agent_server():
6954
print(f"{DEFAULT_AGENT_NAME} v{__version__}")
@@ -91,6 +76,11 @@ def agent_server():
9176
name=DEFAULT_AGENT_NAME,
9277
system_prompt=DEFAULT_AGENT_SYSTEM_PROMPT,
9378
enable_otel=args.otel,
79+
otel_endpoint=args.otel_endpoint,
80+
otel_headers=args.otel_headers,
81+
otel_public_key=args.otel_public_key,
82+
otel_secret_key=args.otel_secret_key,
83+
otel_protocol=args.otel_protocol,
9484
agent_definitions=CHILD_AGENT_DEFS if CHILD_AGENT_DEFS else None,
9585
)
9686

arr_mcp/bazarr_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
JWTClaimsLoggingMiddleware,
3636
)
3737

38-
__version__ = "0.2.24"
38+
__version__ = "0.2.25"
3939

4040
logger = get_logger(name="TokenMiddleware")
4141
logger.setLevel(logging.DEBUG)

arr_mcp/chaptarr_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
JWTClaimsLoggingMiddleware,
3636
)
3737

38-
__version__ = "0.2.24"
38+
__version__ = "0.2.25"
3939

4040
logger = get_logger(name="TokenMiddleware")
4141
logger.setLevel(logging.DEBUG)

arr_mcp/lidarr_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
JWTClaimsLoggingMiddleware,
3737
)
3838

39-
__version__ = "0.2.24"
39+
__version__ = "0.2.25"
4040

4141
logger = get_logger(name="TokenMiddleware")
4242
logger.setLevel(logging.DEBUG)

arr_mcp/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
JWTClaimsLoggingMiddleware,
3434
)
3535

36-
__version__ = "0.2.24"
36+
__version__ = "0.2.25"
3737

3838
logger = get_logger(name="TokenMiddleware")
3939
logger.setLevel(logging.DEBUG)

arr_mcp/prowlarr_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
JWTClaimsLoggingMiddleware,
3737
)
3838

39-
__version__ = "0.2.24"
39+
__version__ = "0.2.25"
4040

4141
logger = get_logger(name="TokenMiddleware")
4242
logger.setLevel(logging.DEBUG)

arr_mcp/radarr_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
JWTClaimsLoggingMiddleware,
3737
)
3838

39-
__version__ = "0.2.24"
39+
__version__ = "0.2.25"
4040

4141
logger = get_logger(name="TokenMiddleware")
4242
logger.setLevel(logging.DEBUG)

0 commit comments

Comments
 (0)