0.3.0 -> stable - #81
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
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 |
|
Claude finished @jnasbyupgrade's task in 2m 49s —— View job Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. Reviewed the mechanical version-flip (
Note: I wasn't able to run |
c23104d to
1cd205f
Compare
|
Claude finished @jnasbyupgrade's task in 4m 5s —— View job Reviewing PR #81
Code reviewPR description is now out of sync with the diff (needs fixing before merge). The
but the current diff does the opposite — Worth a second look: this deviates from pgxntool's own documented convention, though for
Everything else checks out:
I wasn't able to run |
1cd205f to
a5a3d99
Compare
This is the same stamping mechanics as any version bump, just to a permanent `stable` token instead of a real number, so ordinary source edits on master regenerate `sql/cat_tools--stable.sql.in` instead of corrupting the just-released `0.3.0` install script. The one new wrinkle: `sql/cat_tools--stable.sql.in` is pure derived output (identical to cat_tools.sql.in) with no real version to anchor it, so it's gitignored rather than tracked, unlike a real release's install script. `sql/cat_tools--0.3.0--stable.sql.in` is the live update script future fixes extend; it starts empty since nothing has changed since 0.3.0. RELEASE.md's step 7 cleanup bullet was also fixed -- it wrongly implied removing a released version's own tracked install file, which should never happen. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
a5a3d99 to
56f7efe
Compare
3a1b1a4
into
Postgres-Extensions:master
Per RELEASE.md steps 4/7:
default_versionmoves from the just-released0.3.0to the permanentstablepseudo-version, so routine source edits on master regeneratesql/cat_tools--stable.sql.ininstead of corrupting the frozen0.3.0install script.cat_tools.control/META.in.json:default_version->stable.sql/cat_tools--0.3.0--stable.sql.in: seeded, empty -- the live update script future fixes extend.sql/cat_tools--stable.sql.in: gitignored, not tracked (pure derived output, no real version to anchor it).HISTORY.asc: newSTABLEsection opened for the next release..sql.ininstall scripts are always tracked andstableis the one exception -- step 7 now just references that instead of restating it.stableisn't a skipped version (a one-time transient case) but a permanently-current one (would be re-diffed every commit if tracked, for no test-coverage gain).