herdr-link 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/herdr-link.mcp.js +1 -1
- package/package.json +1 -1
- package/src/mcp.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project are documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [0.2.1] - 2026-08-25
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- Releases are now published from GitHub Actions with signed npm provenance (Sigstore attestation binding each tarball to this repo, commit, and workflow); local publish path retired in favour of the `NPM_TOKEN` automation credential.
|
|
11
|
+
|
|
6
12
|
## [0.2.0] - 2026-08-25
|
|
7
13
|
|
|
8
14
|
### Added
|
package/dist/herdr-link.mcp.js
CHANGED
|
@@ -445,7 +445,7 @@ async function closeAgentPane(agentName) {
|
|
|
445
445
|
|
|
446
446
|
// src/mcp.ts
|
|
447
447
|
var MCP_SERVER_NAME = "herdr-link";
|
|
448
|
-
var MCP_SERVER_VERSION = "0.2.
|
|
448
|
+
var MCP_SERVER_VERSION = "0.2.1";
|
|
449
449
|
var MCP_PROTOCOL_VERSION = "2025-06-18";
|
|
450
450
|
var TOOLS_LIST_CHANGED = "notifications/tools/list_changed";
|
|
451
451
|
var PARSE_ERROR = -32700;
|
package/package.json
CHANGED
package/src/mcp.ts
CHANGED
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
|
|
36
36
|
export const MCP_SERVER_NAME = "herdr-link";
|
|
37
37
|
/** Keep in sync with package.json "version" (serverInfo is informational). */
|
|
38
|
-
export const MCP_SERVER_VERSION = "0.2.
|
|
38
|
+
export const MCP_SERVER_VERSION = "0.2.1";
|
|
39
39
|
/** Fallback protocol version advertised when the client sends none. */
|
|
40
40
|
export const MCP_PROTOCOL_VERSION = "2025-06-18";
|
|
41
41
|
|