Skip to content

Commit a52521b

Browse files
committed
bump version to 0.2.0 in pyproject.toml and cli.py
1 parent feb3d6d commit a52521b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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 = "androidtvmcp"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "Android TV Remote Control to MCP Bridge"
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/androidtvmcp/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def load_config(config_path: Optional[str] = None) -> Dict[str, Any]:
8282

8383

8484
@click.group()
85-
@click.version_option(version="0.1.0", prog_name="androidtvmcp")
85+
@click.version_option(version="0.2.0", prog_name="androidtvmcp")
8686
def cli():
8787
"""AndroidTVMCP - Android TV Remote Control to MCP Bridge."""
8888
pass

src/androidtvmcp/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ async def run_stdio(self, log_level: int = logging.INFO) -> None:
508508
write_stream,
509509
InitializationOptions(
510510
server_name="androidtvmcp",
511-
server_version="0.1.0",
511+
server_version="0.2.0",
512512
capabilities=ServerCapabilities(
513513
tools={},
514514
resources={}

0 commit comments

Comments
 (0)