Skip to content

Commit 549a18a

Browse files
committed
Bump version: 0.2.11 → 0.2.12
1 parent c093116 commit 549a18a

File tree

5 files changed

+6
-29
lines changed

5 files changed

+6
-29
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.11
2+
current_version = 0.2.12
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 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.11
57+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow github-agent>=0.2.12
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.11*
24+
*Version: 0.2.12*
2525

2626
## Overview
2727

github_agent/github_agent.py

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from pydantic_ai.ui import SSE_CONTENT_TYPE
4040
from pydantic_ai.ui.ag_ui import AGUIAdapter
4141

42-
__version__ = "0.2.11"
42+
__version__ = "0.2.12"
4343

4444
logging.basicConfig(
4545
level=logging.INFO,
@@ -901,7 +901,7 @@ def agent_server():
901901

902902
if hasattr(args, "help") and args.help:
903903

904-
usage()
904+
parser.print_help()
905905

906906
sys.exit(0)
907907

@@ -938,28 +938,5 @@ def agent_server():
938938
)
939939

940940

941-
def usage():
942-
print(
943-
f"Github Agent ({__version__}): CLI Tool\n\n"
944-
"Usage:\n"
945-
"--host [ Host to bind the server to ]\n"
946-
"--port [ Port to bind the server to ]\n"
947-
"--debug [ Debug mode ]\n"
948-
"--reload [ Enable auto-reload ]\n"
949-
"--provider [ LLM Provider ]\n"
950-
"--model-id [ LLM Model ID ]\n"
951-
"--base-url [ LLM Base URL (for OpenAI compatible providers) ]\n"
952-
"--api-key [ LLM API Key ]\n"
953-
"--mcp-url [ MCP Server URL ]\n"
954-
"--mcp-config [ MCP Server Config ]\n"
955-
"--custom-skills-directory [ Directory containing additional custom agent skills ]\n"
956-
"--web [ Enable Pydantic AI Web UI ]\n"
957-
"\n"
958-
"Examples:\n"
959-
" [Simple] github-agent \n"
960-
' [Complex] github-agent --host "value" --port "value" --debug "value" --reload --provider "value" --model-id "value" --base-url "value" --api-key "value" --mcp-url "value" --mcp-config "value" --custom-skills-directory "value" --web\n'
961-
)
962-
963-
964941
if __name__ == "__main__":
965942
agent_server()

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 = "github-agent"
7-
version = "0.2.11"
7+
version = "0.2.12"
88
readme = "README.md"
99
description = "GitHub Agent for MCP"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)