chore: drop release-as pin so release-please bumps past 0.1.0#7
Conversation
The bootstrap "release-as": "0.1.0" forced every release PR back to 0.1.0, so post-0.1.0 changes (the SSE/Accept fix) never produced a new tag — merging the release PR just tried to recreate the existing v0.1.0. Removing the pin lets release-please compute normal bumps from conventional commits (fix -> 0.1.1). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
Warning Review limit reached
More reviews will be available in 49 minutes and 11 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more credits in the billing tab to continue. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
📊 Code Quality Score: 1/100
Was this score accurate? 👍 Yes · 👎 No Scored by GitVelocity · How are scores calculated? |
📊 Code Quality Score: 1/100
Was this score accurate? 👍 Yes · 👎 No Scored by GitVelocity · How are scores calculated? |
Problem
mainended up with twochore(main): release 0.1.0commits (#3 and #5). The bootstrap"release-as": "0.1.0"inrelease-please-config.jsonforces every release PR back to 0.1.0, so the post-0.1.0 changes (the SSE/Accept fix #6, docs #4) never produced a new tag — merging the second release PR just tried to recreate the existingv0.1.0, which no-ops. Result: nov0.1.1, no GoReleaser, no updated Homebrew formula.Fix
Remove the
release-aspin. It's only meant to seed the first release version; withv0.1.0already tagged and the manifest at0.1.0, release-please now computes normal bumps from conventional commits — the pendingfix:yields 0.1.1.Manifest and CHANGELOG are left untouched (owned by the bot).
After merge
release-please re-runs → opens
chore(main): release 0.1.1→ merging it tagsv0.1.1→ GoReleaser updates the formula →brew upgrade gitvelocityships the transport fix.🤖 Generated with Claude Code