Skip to content

Commit 8298084

Browse files
committed
Bump version: 1.3.38 → 1.3.39
1 parent 0798161 commit 8298084

21 files changed

+81
-38
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.37
2+
current_version = 1.3.39
33
commit = True
44
tag = True
55

@@ -15,11 +15,11 @@ replace = Version: {new_version}
1515
search = ansible-tower-mcp[all]>={current_version}
1616
replace = ansible-tower-mcp[all]>={new_version}
1717

18-
[bumpversion:file:ansible_tower_mcp/agent.py]
18+
[bumpversion:file:ansible_tower_mcp/agent_server.py]
1919
search = __version__ = "{current_version}"
2020
replace = __version__ = "{new_version}"
2121

22-
[bumpversion:file:ansible_tower_mcp/mcp.py]
22+
[bumpversion:file:ansible_tower_mcp/mcp_server.py]
2323
search = __version__ = "{current_version}"
2424
replace = __version__ = "{new_version}"
2525

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 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 ansible-tower-mcp[all]>=1.3.37
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow ansible-tower-mcp[all]>=1.3.39
5858

5959
CMD ["ansible-tower-mcp"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
![PyPI - Wheel](https://img.shields.io/pypi/wheel/ansible-tower-mcp)
2323
![PyPI - Implementation](https://img.shields.io/pypi/implementation/ansible-tower-mcp)
2424

25-
*Version: 1.3.37*
25+
*Version: 1.3.39*
2626

2727
## Overview
2828

ansible_tower_mcp/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
]
1313

1414
OPTIONAL_MODULES = {
15-
"ansible_tower_mcp.agent": "agent",
16-
"ansible_tower_mcp.mcp": "mcp",
15+
"ansible_tower_mcp.agent_server": "agent",
16+
"ansible_tower_mcp.mcp_server": "mcp",
1717
}
1818

1919

@@ -47,10 +47,10 @@ def _expose_members(module):
4747
else:
4848
globals()[f"_{extra_name.upper()}_AVAILABLE"] = False
4949

50-
_MCP_AVAILABLE = OPTIONAL_MODULES.get("ansible_tower_mcp.mcp") in [
50+
_MCP_AVAILABLE = OPTIONAL_MODULES.get("ansible_tower_mcp.mcp_server") in [
5151
m.__name__ for m in globals().values() if hasattr(m, "__name__")
5252
]
53-
_AGENT_AVAILABLE = "ansible_tower_mcp.agent" in globals()
53+
_AGENT_AVAILABLE = "ansible_tower_mcp.agent_server" in globals()
5454

5555
__all__.extend(["_MCP_AVAILABLE", "_AGENT_AVAILABLE"])
5656

ansible_tower_mcp/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22
# coding: utf-8
3-
from ansible_tower_mcp.mcp import ansible_tower_mcp
3+
from ansible_tower_mcp.mcp_server import ansible_tower_mcp
44

55
if __name__ == "__main__":
66
ansible_tower_mcp()

ansible_tower_mcp/agent/IDENTITY.md

Lines changed: 0 additions & 15 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# CRON_LOG.md - Scheduled Task History
2+
3+
| Timestamp | Task ID | Status | Message |
4+
|-----------|---------|--------|---------|

0 commit comments

Comments
 (0)