Skip to content

chore(release): 3.2.0#95

Merged
anderskev merged 3 commits intomainfrom
chore/release-3.2.0
Apr 18, 2026
Merged

chore(release): 3.2.0#95
anderskev merged 3 commits intomainfrom
chore/release-3.2.0

Conversation

@anderskev
Copy link
Copy Markdown
Member

Summary

  • Bump version to 3.2.0
  • Update CHANGELOG.md with changes since v3.1.0
  • Update README.md and CLAUDE.md with new skill count (126 → 127), beagle-analysis skill count (10 → 11), and add brainstorm-beagle + resolve-beagle to the Documentation & Analysis skills table

Changes Since v3.1.0

Version Locations Updated

  • .claude-plugin/marketplace.json metadata.version → 3.2.0
  • plugins/beagle-analysis/.claude-plugin/plugin.json → 2.1.0 (also added resolve-beagle keyword and refreshed description)

Post-merge Steps

After merging, run:

/release-tag 3.2.0

🤖 Generated with Claude Code

Co-Authored-By: Claude Opus 4 <noreply@anthropic.com>
@anderskev anderskev self-assigned this Apr 18, 2026
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Apr 18, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 8299cdc8-0a96-40fc-8716-edf4527f10f1

📥 Commits

Reviewing files that changed from the base of the PR and between ef4eb07 and e36e933.

📒 Files selected for processing (1)
  • .claude/commands/release.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • .claude/commands/release.md

Walkthrough

The PR increments marketplace metadata to 3.2.0; adds a new resolve-beagle skill to beagle-analysis and bumps that plugin from 2.0.0 to 2.1.0 (skill count 10 → 11); bumps beagle-core from 1.1.5 to 1.1.6; updates CHANGELOG.md and README/CLAUDE.md to reflect the 3.2.0 release and skill counts; and adds release-process checks and guidance to verify CHANGELOG footer compare links for the new version.

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title 'chore(release): 3.2.0' directly and clearly summarizes the main change: bumping the project version to 3.2.0 for a release.
Description check ✅ Passed The description provides a clear and well-structured summary of all changes related to the 3.2.0 release, including version bumps, changelog updates, documentation changes, and the new resolve-beagle skill.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@CHANGELOG.md`:
- Around line 9-13: The footer compare links in CHANGELOG.md need updating to
add a new "[3.2.0]" compare link and to ensure the "Unreleased" link no longer
points to "v3.1.0"; update the link reference block so it includes a "[3.2.0]:
<repo>/compare/v3.1.0...v3.2.0" entry and adjust the "Unreleased" link to
compare "v3.2.0...HEAD" (or the repo equivalent), making sure the new [3.2.0]
section header and its content (the added "beagle-analysis" bullet) match the
new link references.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 1a5980d0-78b0-43fe-8a4f-2683268a765c

📥 Commits

Reviewing files that changed from the base of the PR and between 569e372 and 69a1030.

📒 Files selected for processing (5)
  • .claude-plugin/marketplace.json
  • CHANGELOG.md
  • CLAUDE.md
  • README.md
  • plugins/beagle-analysis/.claude-plugin/plugin.json

Comment thread CHANGELOG.md
Adds a verification gate to the /release command and concrete
instructions (with example diff) to gen-release-notes Step 5 so the
[Unreleased] line is advanced and a new [VERSION] compare link is
inserted on every release. Also adds the missing 3.2.0 footer links to
CHANGELOG.md and bumps beagle-core to 1.1.6.

Resolves the recurring CodeRabbit feedback on release PRs.
@anderskev anderskev enabled auto-merge (squash) April 18, 2026 05:12
Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In @.claude/commands/release.md:
- Around line 111-115: The current grep -qE checks interpolate NEW_VERSION
directly into EREs which treats dots as wildcards; change the script to escape
dots in NEW_VERSION before using it in the two grep -qE patterns (the Unreleased
line check that matches compare/v${NEW_VERSION}...HEAD and the footer check that
matches ...compare/v.*...v${NEW_VERSION}) by creating an escaped-version
variable (derived from NEW_VERSION with "." -> "\.") and use that escaped
variable in both grep patterns against CHANGELOG.md so the checks only match
exact semantic versions.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 758135ad-eee1-486d-b069-439f11166815

📥 Commits

Reviewing files that changed from the base of the PR and between 69a1030 and ef4eb07.

📒 Files selected for processing (4)
  • .claude/commands/release.md
  • CHANGELOG.md
  • plugins/beagle-core/.claude-plugin/plugin.json
  • plugins/beagle-core/skills/gen-release-notes/SKILL.md
✅ Files skipped from review due to trivial changes (3)
  • plugins/beagle-core/.claude-plugin/plugin.json
  • plugins/beagle-core/skills/gen-release-notes/SKILL.md
  • CHANGELOG.md

Comment thread .claude/commands/release.md Outdated
The footer-link verification greps interpolated NEW_VERSION into ERE
patterns where '.' is a wildcard, so '3.2.0' would also match '3x2x0'.
Derive an escaped NEW_VERSION_RE and use it in both grep patterns so
only exact semantic versions match.

Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
@anderskev anderskev merged commit f63ab32 into main Apr 18, 2026
1 check passed
@anderskev anderskev deleted the chore/release-3.2.0 branch April 18, 2026 05:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant