@giwonn/claude-daily-review 0.3.4 → 0.3.6

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.
@@ -13,10 +13,10 @@
13
13
  "source": {
14
14
  "source": "url",
15
15
  "url": "https://github.com/giwonn/claude-daily-review.git",
16
- "sha": "5bb643e083c2447f7feabec1705e8c2865e0ebc6"
16
+ "sha": "8e0826d12fafb2d0439b77ce7f83d34d3904bcd9"
17
17
  },
18
18
  "description": "Auto-capture conversations for daily review and career documentation",
19
- "version": "0.3.0",
19
+ "version": "0.3.6",
20
20
  "author": {
21
21
  "name": "giwonn"
22
22
  },
@@ -55,10 +55,12 @@ jobs:
55
55
  with:
56
56
  ref: master
57
57
 
58
- - name: Update SHA in marketplace.json
58
+ - name: Update SHA and version in marketplace.json
59
59
  run: |
60
60
  SHA=$(git rev-parse HEAD)
61
+ VERSION=$(node -p "require('./package.json').version")
61
62
  sed -i "s/\"sha\": \"[a-f0-9]*\"/\"sha\": \"$SHA\"/" .claude-plugin/marketplace.json
63
+ sed -i "s/\"version\": \"[0-9.]*\"/\"version\": \"$VERSION\"/" .claude-plugin/marketplace.json
62
64
  cat .claude-plugin/marketplace.json
63
65
 
64
66
  - name: Commit and push
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giwonn/claude-daily-review",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "type": "module",
5
5
  "description": "Claude Code plugin that auto-captures conversations for daily review and career documentation",
6
6
  "repository": {