claude-code-autoconfig 1.0.163 → 1.0.164

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 +6 -6
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.164
4
+ - fix: use postversion hook so changelog includes current version
5
+
6
+ ## v1.0.163
7
+ - fix: correct AUTOCONFIG_FILES list (guide→docs, add rules)
8
+
3
9
  ## v1.0.162
4
10
  - feat: show changelog on upgrade
5
11
 
@@ -144,9 +150,3 @@
144
150
  ## v1.0.115
145
151
  - feat: add @version tracking to all command files
146
152
 
147
- ## v1.0.114
148
- - fix: detect updated commands, remove redundant update file
149
-
150
- ## v1.0.113
151
- - fix: remove redundant installed commands list from upgrade output
152
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-autoconfig",
3
- "version": "1.0.163",
3
+ "version": "1.0.164",
4
4
  "description": "Intelligent, self-configuring setup for Claude Code. One command analyzes your project, configures Claude, and shows you what it did.",
5
5
  "author": "ADAC 1001 <info@adac1001.com>",
6
6
  "license": "MIT",
@@ -26,7 +26,7 @@
26
26
  "test:box": "node test/box-alignment.test.js",
27
27
  "test:install": "node test/cli-install.test.js",
28
28
  "test:update": "node test/update-system.test.js",
29
- "preversion": "node scripts/generate-changelog.js && git add CHANGELOG.md"
29
+ "postversion": "node scripts/generate-changelog.js && git add CHANGELOG.md && git commit --amend --no-edit"
30
30
  },
31
31
  "bin": {
32
32
  "claude-code-autoconfig": "./bin/cli.js"