Skip to content

Commit eddfbc2

Browse files
committed
Bump version: 1.3.0 → 1.3.1
1 parent a09cc6d commit eddfbc2

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
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.0
2+
current_version = 1.3.1
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ ENV HOST=${HOST} \
5353
RUN apt-get update \
5454
&& apt-get install -y curl nano \
5555
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
56-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow ansible-tower-mcp[all]>=1.3.0
56+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow ansible-tower-mcp[all]>=1.3.1
5757

5858
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.0*
25+
*Version: 1.3.1*
2626

2727
## Overview
2828

ansible_tower_mcp/ansible_tower_agent.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from pydantic_ai.ui import SSE_CONTENT_TYPE
3535
from pydantic_ai.ui.ag_ui import AGUIAdapter
3636

37-
__version__ = "1.3.0"
37+
__version__ = "1.3.1"
3838

3939
logging.basicConfig(
4040
level=logging.INFO,
@@ -599,7 +599,11 @@ def create_agent_server(
599599

600600
@asynccontextmanager
601601
async def lifespan(app: FastAPI):
602-
yield
602+
if hasattr(a2a_app, "router") and hasattr(a2a_app.router, "lifespan_context"):
603+
async with a2a_app.router.lifespan_context(a2a_app):
604+
yield
605+
else:
606+
yield
603607

604608
app = FastAPI(
605609
title=f"{AGENT_NAME} - A2A + AG-UI Server",

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.0"
11+
__version__ = "1.3.1"
1212

1313

1414
class Api:

ansible_tower_mcp/ansible_tower_mcp.py

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

37-
__version__ = "1.3.0"
37+
__version__ = "1.3.1"
3838

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.0"
7+
version = "1.3.1"
88
description = "Ansible Tower MCP Server for Agentic AI!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]

0 commit comments

Comments
 (0)