diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c888eb..9316ff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project uses semantic versioning. +## [0.1.1] - 2026-07-06 + +### Changed + +- Clarified that Hermes Git plugin installs clone the repository default branch. +- Added gated PyPI publishing directly to the tag-based release workflow for future releases. + ## [0.1.0] - 2026-07-06 ### Added diff --git a/README.md b/README.md index 7dbdc84..7d98dc4 100644 --- a/README.md +++ b/README.md @@ -14,15 +14,16 @@ REST API calls with `TINYFISH_API_KEY` when MCP OAuth is unavailable. ## Install -Stable Git plugin install: +Hermes Git plugin install: ```bash hermes plugins install gabeosx/hermes-plugin-tinyfish --enable hermes tinyfish setup ``` -Hermes installs from the latest stable GitHub release by default. The `main` -branch is the current development branch. +Hermes' Git plugin installer currently clones the repository default branch. +Stable release artifacts are published on the +[GitHub Releases page](https://github.com/gabeosx/hermes-plugin-tinyfish/releases). PyPI install is planned after PyPI Trusted Publishing is configured: diff --git a/plugin.yaml b/plugin.yaml index d1231c2..5a2a9d1 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -1,5 +1,5 @@ name: web-tinyfish -version: 0.1.0 +version: 0.1.1 description: "TinyFish web search and content extraction provider for Hermes Agent. Prefers TinyFish hosted MCP OAuth and falls back to TINYFISH_API_KEY REST calls." author: Gabe O'Leary kind: backend diff --git a/pyproject.toml b/pyproject.toml index 1aa383d..53f17b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "hermes-plugin-tinyfish" -version = "0.1.0" +version = "0.1.1" description = "TinyFish web search and extraction provider plugin for Hermes Agent" readme = "README.md" requires-python = ">=3.10"