cc-cream 0.1.1 → 0.1.2

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 +9 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to cc-cream are documented here. Format follows
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow
5
5
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.1.2] — 2026-05-29
8
+
9
+ ### Changed
10
+ - **No install-time lifecycle scripts in the published package.** The git-hook
11
+ registration moved off the `prepare` lifecycle to an opt-in `npm run hooks`,
12
+ so `npm install`/`npx cc-cream` runs nothing automatically. Improves the
13
+ supply-chain posture (and Socket score) with no change to the runtime.
14
+
7
15
  ## [0.1.1] — 2026-05-29
8
16
 
9
17
  ### Added
@@ -51,5 +59,6 @@ line and prints a colored ≤3-row bar — zero tokens, the model never sees it.
51
59
  - Supports **macOS and Linux**; Windows is a planned fast-follow.
52
60
  - Requires Claude Code **2.1.132+** (`effort` / `thinking` need 2.1.145+).
53
61
 
62
+ [0.1.2]: https://github.com/bart-turczynski/cc-cream/compare/v0.1.1...v0.1.2
54
63
  [0.1.1]: https://github.com/bart-turczynski/cc-cream/compare/v0.1.0...v0.1.1
55
64
  [0.1.0]: https://github.com/bart-turczynski/cc-cream/releases/tag/v0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-cream",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Claude Code cache/context/cost status-line tool",
5
5
  "directories": {
6
6
  "doc": "docs"
@@ -14,7 +14,7 @@
14
14
  "test:manual": "cucumber-js --profile manual",
15
15
  "coverage": "c8 cucumber-js",
16
16
  "watch": "cucumber-js --watch",
17
- "prepare": "simple-git-hooks",
17
+ "hooks": "simple-git-hooks",
18
18
  "prepublishOnly": "npm test"
19
19
  },
20
20
  "simple-git-hooks": {