dsh-fast 0.2.8 → 0.2.9

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 CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.9] - 2026-09-08
9
+
10
+ ### Docs
11
+
12
+ - Repair GBK mojibake in the package.json description: the em dash was corrupted to the U+95B3 U+003F marker pair; the description is restored to the clean pre-corruption text; no behavior change.
13
+
8
14
  ## [0.2.8] - 2026-09-07
9
15
 
10
16
  ### Docs
package/lib/index.js CHANGED
@@ -691,7 +691,7 @@ function appendSample(history, sample, maxSamples) {
691
691
  //#endregion
692
692
  //#region src/version.ts
693
693
  /** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
694
- const VERSION = "0.2.8";
694
+ const VERSION = "0.2.9";
695
695
  //#endregion
696
696
  //#region src/index.ts
697
697
  const name = "fast";
@@ -1,3 +1,3 @@
1
1
  /** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
2
- export declare const VERSION = "0.2.8";
2
+ export declare const VERSION = "0.2.9";
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
1
  /** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
2
- export const VERSION = '0.2.8';
2
+ export const VERSION = '0.2.9';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-fast",
3
- "version": "0.2.8",
4
- "description": "Read-only performance diagnostics for DeepSeek Harness: session load (open/restore) timing, spill-hit counts, compaction count and trigger, context-injection volume (AGENTS.md/skills/tool-schema token share), and LLM cache hit rate 閳?surfaced via the /fast command and the fast_report tool, persisted as reconstructable fast/* session events with async sampling off the model path.",
3
+ "version": "0.2.9",
4
+ "description": "Read-only performance diagnostics for DeepSeek Harness: session load (open/restore) timing, spill-hit counts, compaction count and trigger, context-injection volume (AGENTS.md/skills/tool-schema token share), and LLM cache hit rate — surfaced via the /fast command and the fast_report tool, persisted as reconstructable fast/* session events with async sampling off the model path.",
5
5
  "author": "dsh-fast contributors",
6
6
  "repository": {
7
7
  "type": "git",
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  /** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
2
- export const VERSION = '0.2.8'
2
+ export const VERSION = '0.2.9'