Conversation
WalkthroughThis PR bumps the plugin version from 2.0.6 to 2.0.7 across metadata and constants. package.json updates the "version" field to 2.0.7. In plugin.php, the header Version and @Version fields are set to 2.0.7, and the SE_VERSION constant changes from '2.0.5' to '2.0.7'. In src/classes/class-date-display-formatter.php, a blank line after a comment in render_date_list_grouped() is removed with no behavioral change. Possibly related PRs
Suggested reviewers
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
♻️ Duplicate comments (1)
plugin.php (1)
8-21: License in header is GPL-3.0-or-later; package.json lists GPL-2.0-or-later.Mirror the package.json comment; align both to the same license.
🧹 Nitpick comments (2)
plugin.php (2)
16-16: Plugin header Version bumped to 2.0.7: LGTM. Also verify “Tested up to: 6.4”.If you’ve validated on newer WP core, update this field accordingly.
34-34: SE_VERSION constant updated: LGTM. Consider deriving from metadata to avoid future drift.Use the parsed header version so you never need to edit this line during bumps.
-define( 'SE_VERSION', '2.0.7' ); +define( 'SE_VERSION', SE_METADATA['Version'] ?? '2.0.7' );
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (2)
package-lock.jsonis excluded by!**/package-lock.jsonsimple-events.zipis excluded by!**/*.zip
📒 Files selected for processing (3)
package.json(2 hunks)plugin.php(3 hunks)src/classes/class-date-display-formatter.php(0 hunks)
💤 Files with no reviewable changes (1)
- src/classes/class-date-display-formatter.php
🔇 Additional comments (3)
plugin.php (1)
6-6: @Version header bumped to 2.0.7: LGTM.package.json (2)
9-9: License mismatch with plugin header — reconcile.package.json declares "GPL-2.0-or-later" while plugin.php declares "GPL-3.0-or-later"; pick one canonical license and align both metadata.
If GPL‑3.0‑or‑later is correct (per plugin.php), apply:
- "license": "GPL-2.0-or-later", + "license": "GPL-3.0-or-later",
3-3: Approve: version bump to 2.0.7 — all declared versions match.
package.json, plugin.php header/@Version, and SE_VERSION const all report 2.0.7.
Changes proposed in this Pull Request
Version updates:
2.0.7inpackage.json, plugin headers inplugin.php, and theSE_VERSIONconstant to maintain consistency throughout the project. [1] [2] [3] [4]Minor code formatting:
render_date_list_groupedmethod inclass-date-display-formatter.php.Testing instructions
Mentions #
Summary by CodeRabbit
Chores
Style
No user-facing changes in this release.