Skip to content

Commit a4d2020

Browse files
committed
Bump version: 25.15.18 → 25.15.19
1 parent 0cbbce0 commit a4d2020

7 files changed

Lines changed: 10 additions & 1273 deletions

File tree

.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 = 25.15.18
2+
current_version = 25.15.19
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 gitlab-api[all]>=25.15.18
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow gitlab-api[all]>=25.15.19
5858

5959
CMD ["gitlab-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/gitlab-api)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/gitlab-api)
2323

24-
*Version: 25.15.18*
24+
*Version: 25.15.19*
2525

2626
## Overview
2727

gitlab_api/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__ = "25.15.18"
15+
__version__ = "25.15.19"
1616

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

gitlab_api/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from starlette.requests import Request
3333
from starlette.responses import JSONResponse
3434

35-
__version__ = "25.15.18"
35+
__version__ = "25.15.19"
3636
print(f"Gitlab MCP v{__version__}")
3737

3838
logger = get_logger(name="mcp_server")

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 = "gitlab-api"
7-
version = "25.15.18"
7+
version = "25.15.19"
88
description = "GitLab API + MCP Server + A2A Server"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -18,23 +18,23 @@ classifiers = [
1818
]
1919
requires-python = ">=3.10"
2020
dependencies = [
21-
"agent-utilities>=0.2.2",
21+
"agent-utilities>=0.2.4",
2222
]
2323
[project.optional-dependencies]
2424
mcp = [
25-
"agent-utilities[mcp]>=0.2.2",
25+
"agent-utilities[mcp]>=0.2.4",
2626
]
2727

2828
agent = [
29-
"agent-utilities[agent]>=0.2.2",
29+
"agent-utilities[agent,logfire]>=0.2.4",
3030
]
3131

3232
gql = [
3333
"gql>=4.0.0",
3434
]
3535

3636
all = [
37-
"gitlab-api[mcp,agent,gql]>=25.15.15"
37+
"gitlab-api[mcp,agent,gql,logfire]>=25.15.15"
3838
]
3939

4040
[project.scripts]

0 commit comments

Comments
 (0)