@hoyongjin/gitbook-mcp 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project are documented here. The format is based on
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
5
5
  adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [1.0.1] - 2026-06-23
8
+
9
+ Re-released through CI with **OIDC trusted publishing** (no long-lived token) and a
10
+ signed **provenance** attestation — 1.0.0 was bootstrapped with a local publish and
11
+ is unsigned. **No functional changes**; the code is identical to 1.0.0.
12
+
7
13
  ## [1.0.0] - 2026-06-23
8
14
 
9
15
  First public release: an MCP server for GitBook exposing **7 read tools** and a
@@ -53,4 +59,5 @@ First public release: an MCP server for GitBook exposing **7 read tools** and a
53
59
  > The CI publish job runs on a GitHub Release and requires the `@hoyongjin` scope to
54
60
  > be owned by the publishing npm account and an `NPM_TOKEN` secret in the repo.
55
61
 
62
+ [1.0.1]: https://github.com/HoYongJin/gitbook-mcp/releases/tag/v1.0.1
56
63
  [1.0.0]: https://github.com/HoYongJin/gitbook-mcp/releases/tag/v1.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hoyongjin/gitbook-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Model Context Protocol server for GitBook — read content and drive a change-request write workflow over stdio or streamable HTTP.",
5
5
  "keywords": [
6
6
  "gitbook",
@@ -67,6 +67,7 @@
67
67
  "vitest": "^4.1.8"
68
68
  },
69
69
  "publishConfig": {
70
- "access": "public"
70
+ "access": "public",
71
+ "provenance": true
71
72
  }
72
73
  }