Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## [Unreleased]

## [0.2.0] - 2026-07-22

### Added

- A bounded raw TCP preflight now separates a masked `adb` denial from a real network failure. When `adb connect` reports the TV as unreachable or the network as ambiguous but one short probe of the configured endpoint connects — a single attempt, no bytes written, two-second cap — the failure is reported as `local_network_denied` with guidance to grant `adb` Local Network access on macOS or reuse an ADB server started from a permitted GUI terminal. A failed probe keeps the original diagnosis, because the probing process may itself be denied, and the probe never runs an ADB server lifecycle command.
Expand Down Expand Up @@ -58,4 +60,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
- Library mutations require an explicit IMDb ID and content type.
- Credentials, device details, and ADB keys are excluded from version control and documented as sensitive.

[0.2.0]: https://github.com/netixc/stremio-mcp/releases/tag/v0.2.0
[0.1.0]: https://github.com/netixc/stremio-mcp/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ uvx stremio-mcp-server
To run the current release explicitly:

```bash
uvx --from stremio-mcp-server==0.1.0 stremio-mcp-server
uvx --from stremio-mcp-server==0.2.0 stremio-mcp-server
```

### Source checkout
Expand Down
2 changes: 1 addition & 1 deletion docs/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The GitHub `pypi` environment restricts deployments to tags matching `v*` and re

## Publish a version

1. Confirm the version matches in `pyproject.toml`, `server.json`, `uv.lock`, and the changelog heading.
1. Confirm the version matches in `pyproject.toml`, `server.json`, `uv.lock`, the changelog heading, and the pinned `uvx --from stremio-mcp-server==<version>` install example in `README.md`.
2. Replace `Unreleased` in `CHANGELOG.md` with the ISO release date.
3. Run the full local verification documented in `AGENTS.md`.
4. Commit and push the release metadata, then wait for CI to pass.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "stremio-mcp-server"
version = "0.1.0"
version = "0.2.0"
description = "MCP server for controlling Stremio on Android TV via ADB"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"url": "https://github.com/netixc/stremio-mcp",
"source": "github"
},
"version": "0.1.0",
"version": "0.2.0",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "stremio-mcp-server",
"version": "0.1.0",
"version": "0.2.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading