Skip to content

Commit 4997945

Browse files
committed
Bump version: 0.2.41 → 0.2.42
1 parent 301fdb9 commit 4997945

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
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.41
2+
current_version = 0.2.42
33
commit = True
44
tag = True
55

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ repos:
2525
- id: end-of-file-fixer
2626
- id: no-commit-to-branch
2727
- repo: https://github.com/psf/black
28-
rev: 26.3.0
28+
rev: 26.3.1
2929
hooks:
3030
- id: black
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.15.5
32+
rev: v0.15.6
3333
hooks:
3434
- id: ruff
3535
exclude: ^(test/|tests/|gitlab_api/gitlab_gql\.py$)

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 github-agent>=0.2.41
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow github-agent>=0.2.42
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/github-agent)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/github-agent)
2323

24-
*Version: 0.2.41*
24+
*Version: 0.2.42*
2525

2626
## Overview
2727

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- "TRANSPORT=stdio"
2727
- "LLM_BASE_URL=${LLM_BASE_URL:-http://host.docker.internal:1234/v1}"
2828
- "LLM_API_KEY=${LLM_API_KEY:-llama}"
29-
- "MODEL_ID=${MODEL_ID:-qwen/qwen3.5-35b-a3b}"
29+
- "MODEL_ID=${MODEL_ID:-nvidia/nemotron-3-super}"
3030
- "DEBUG=False"
3131
- "ENABLE_WEB_UI=True"
3232
- "ENABLE_OTEL=True"

github_agent/agent_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
load_identity,
1212
)
1313

14-
__version__ = "0.2.41"
14+
__version__ = "0.2.42"
1515

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

mcp.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343
- "PROVIDER=openai"
4444
- "LLM_BASE_URL=${LLM_BASE_URL:-http://host.docker.internal:1234/v1}"
4545
- "LLM_API_KEY=${LLM_API_KEY:-llama}"
46-
- "MODEL_ID=${MODEL_ID:-qwen/qwen3.5-35b-a3b}"
46+
- "MODEL_ID=${MODEL_ID:-nvidia/nemotron-3-super}"
4747
- "DEBUG=False"
4848
- "ENABLE_WEB_UI=True"
4949
- "ENABLE_OTEL=True"

pyproject.toml

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

55
[project]
66
name = "github-agent"
7-
version = "0.2.41"
7+
version = "0.2.42"
88
readme = "README.md"
99
description = "GitHub Agent for MCP"
1010
requires-python = ">=3.10"
@@ -17,7 +17,7 @@ classifiers = [
1717
"Operating System :: POSIX :: Linux",
1818
"Programming Language :: Python :: 3"]
1919
dependencies = [
20-
"agent-utilities[agent,logfire]>=0.2.26"]
20+
"agent-utilities[agent,logfire]>=0.2.27"]
2121

2222
[project.scripts]
2323
github-agent = "github_agent.agent_server:agent_server"

0 commit comments

Comments
 (0)