Skip to content

Commit 6afd2af

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 930e475 commit 6afd2af

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
@@ -180,11 +180,11 @@ cd react_on_rails_pro && bundle exec rake rbs:validate
180180

181181
**IMPORTANT: This is a monorepo with TWO separate changelogs:**
182182
- **Open Source**: `/CHANGELOG.md` - for react_on_rails gem and npm package
183-
- **Pro**: `/react_on_rails_pro/CHANGELOG.md` - for react_on_rails_pro gem and npm packages
183+
- **Pro**: `/CHANGELOG_PRO.md` - for react_on_rails_pro gem and npm packages
184184

185185
When making changes, update the **appropriate changelog(s)**:
186186
- Open-source features/fixes → Update `/CHANGELOG.md`
187-
- Pro-only features/fixes → Update `/react_on_rails_pro/CHANGELOG.md`
187+
- Pro-only features/fixes → Update `/CHANGELOG_PRO.md`
188188
- Changes affecting both → Update **BOTH** changelogs
189189

190190
### Changelog Guidelines
@@ -195,7 +195,7 @@ When making changes, update the **appropriate changelog(s)**:
195195
- **Use `/update-changelog` command** for guided changelog updates with automatic formatting
196196
- **Version management after releases**:
197197
- Open source: `bundle exec rake update_changelog`
198-
- Pro: `cd react_on_rails_pro && bundle exec rake update_changelog`
198+
- Pro: `bundle exec rake update_changelog CHANGELOG=CHANGELOG_PRO.md`
199199
- **Examples**: Run `grep -A 3 "^#### " CHANGELOG.md | head -30` to see real formatting examples
200200

201201
## ⚠️ 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)