Skip to content

Commit 16dfe6d

Browse files
committed
Document Pro changelog rename in Phase 6
Update Phase 6 checklist and CLAUDE.md to reflect that the Pro changelog will be moved from react_on_rails_pro/CHANGELOG.md to CHANGELOG_PRO.md at the root during Phase 6. This makes both changelogs siblings at the root level, consistent with the monorepo sibling structure philosophy.
1 parent a512260 commit 16dfe6d

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,11 @@ cd react_on_rails_pro && bundle exec rake rbs:validate
196196

197197
**IMPORTANT: This is a monorepo with TWO separate changelogs:**
198198
- **Open Source**: `/CHANGELOG.md` - for react_on_rails gem and npm package
199-
- **Pro**: `/react_on_rails_pro/CHANGELOG.md` - for react_on_rails_pro gem and npm packages
199+
- **Pro**: `/CHANGELOG_PRO.md` - for react_on_rails_pro gem and npm packages
200200

201201
When making changes, update the **appropriate changelog(s)**:
202202
- Open-source features/fixes → Update `/CHANGELOG.md`
203-
- Pro-only features/fixes → Update `/react_on_rails_pro/CHANGELOG.md`
203+
- Pro-only features/fixes → Update `/CHANGELOG_PRO.md`
204204
- Changes affecting both → Update **BOTH** changelogs
205205

206206
### Changelog Guidelines
@@ -211,7 +211,7 @@ When making changes, update the **appropriate changelog(s)**:
211211
- **Use `/update-changelog` command** for guided changelog updates with automatic formatting
212212
- **Version management after releases**:
213213
- Open source: `bundle exec rake update_changelog`
214-
- Pro: `cd react_on_rails_pro && bundle exec rake update_changelog`
214+
- Pro: `bundle exec rake update_changelog CHANGELOG=CHANGELOG_PRO.md`
215215
- **Examples**: Run `grep -A 3 "^#### " CHANGELOG.md | head -30` to see real formatting examples
216216

217217
## ⚠️ FORMATTING RULES

PHASE_6_CHECKLIST.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,13 @@ Most should still work, but verify paths like:
353353

354354
### 7.2: Handle Remaining Files
355355

356+
- [ ] **CHANGELOG.md**: Move to root as CHANGELOG_PRO.md:
357+
358+
```bash
359+
# Move Pro changelog to root as sibling
360+
git mv react_on_rails_pro/CHANGELOG.md CHANGELOG_PRO.md
361+
```
362+
356363
- [ ] **README.md**: Move valuable content to root README or docs/:
357364

358365
```bash
@@ -440,7 +447,9 @@ Most should still work, but verify paths like:
440447
grep -r "react_on_rails_pro/" docs/ --include="*.md"
441448
```
442449

443-
- [ ] Update CLAUDE.md if it references old paths
450+
- [ ] Update CLAUDE.md:
451+
- Update changelog section to reference `/CHANGELOG_PRO.md`
452+
- Update any paths referencing old structure
444453
- [ ] Update CONTRIBUTING.md
445454
- [ ] Update any README files
446455

0 commit comments

Comments
 (0)