You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add people & milestones commands, enhance ship script
- Implemented code-hq people [--role] command
- Implemented code-hq milestones [--status] command
- Both follow same pattern as tasks/notes
- Added automatic version bumping to ship.sh
- User can choose patch/minor/major version bump
- Prevents npm publish duplicate version errors
- Completes CRUD for all entity types
Copy file name to clipboardExpand all lines: .code-hq/graph.jsonld
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -368,6 +368,19 @@
368
368
"dueDate": "2025-02-28",
369
369
"status": "planned",
370
370
"progress": 0
371
+
},
372
+
{
373
+
"@id": "note:1761300918959",
374
+
"@type": "Note",
375
+
"title": "Added automatic version bumping",
376
+
"content": "Updated ship.sh to automatically bump version before publishing. User can choose patch/minor/major bump or skip. Prevents npm publish errors from duplicate versions. Script now:\n1. Shows current version\n2. Prompts for bump type \n3. Updates package.json\n4. Commits with version in message\n5. Tags git with new version\n6. Publishes with error handling",
0 commit comments