Skip to content

Commit fea2e95

Browse files
committed
Bump version: 1.3.16 → 1.3.17
1 parent 3e8cfe2 commit fea2e95

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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 = 1.3.16
2+
current_version = 1.3.17
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 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.16
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow ansible-tower-mcp[all]>=1.3.17
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.16*
25+
*Version: 1.3.17*
2626

2727
## Overview
2828

ansible_tower_mcp/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__ = "1.3.16"
15+
__version__ = "1.3.17"
1616

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

ansible_tower_mcp/ansible_tower_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import re
99
import urllib3
1010

11-
__version__ = "1.3.16"
11+
__version__ = "1.3.17"
1212

1313

1414
class Api:

ansible_tower_mcp/mcp.py

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

40-
__version__ = "1.3.16"
40+
__version__ = "1.3.17"
4141

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

pyproject.toml

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

55
[project]
66
name = "ansible-tower-mcp"
7-
version = "1.3.16"
7+
version = "1.3.17"
88
description = "Ansible Tower MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -18,20 +18,20 @@ classifiers = [
1818
]
1919
requires-python = ">=3.10"
2020
dependencies = [
21-
"agent-utilities>=0.2.2",
21+
"agent-utilities>=0.2.4",
2222
]
2323

2424
[project.optional-dependencies]
2525
mcp = [
26-
"agent-utilities[mcp]>=0.2.2",
26+
"agent-utilities[mcp]>=0.2.4",
2727
]
2828

2929
agent = [
30-
"agent-utilities[agent]>=0.2.2",
30+
"agent-utilities[agent,logfire]>=0.2.4",
3131
]
3232

3333
all = [
34-
"agent-utilities[mcp,agent]>=0.2.2",
34+
"agent-utilities[mcp,agent,logfire]>=0.2.4",
3535
]
3636

3737
[project.scripts]

0 commit comments

Comments
 (0)