Skip to content

Commit b63356c

Browse files
committed
release v1.0.0
1 parent 8a40884 commit b63356c

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release to PyPI
33
on:
44
push:
55
branches:
6-
- main
6+
- master
77
paths-ignore:
88
- '**.md'
99
- '.gitignore'
@@ -26,13 +26,18 @@ jobs:
2626
- name: Install uv
2727
run: |
2828
curl -LsSf https://astral.sh/uv/install.sh | sh
29+
uv venv
30+
source .venv/bin/activate
2931
3032
- name: Install build dependencies
3133
run: |
34+
source .venv/bin/activate
3235
uv pip install build twine
3336
3437
- name: Build package
35-
run: python -m build
38+
run: |
39+
source .venv/bin/activate
40+
python -m build
3641
3742
- name: Publish package to PyPI
3843
uses: pypa/gh-action-pypi-publish@release/v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You can use any [MCP-compatible servers](https://github.com/punkpeye/awesome-mcp
66

77
This act as alternative client beside Claude Desktop. Additionally you can use any LLM provider like OpenAI, Groq, or local LLM model via [llama](https://github.com/ggerganov/llama.cpp).
88

9-
![C4 Diagram](c4_diagram.png)
9+
![C4 Diagram](https://raw.githubusercontent.com/adhikasp/mcp-client-cli/refs/heads/master/c4_diagram.png)
1010

1111
## Usage
1212

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "mcp_client_cli"
7-
version = "0.3.0"
7+
version = "1.0.0"
88
description = "Command line interface for MCP client"
99
readme = "README.md"
1010
requires-python = ">=3.12"

0 commit comments

Comments
 (0)