-
Notifications
You must be signed in to change notification settings - Fork 0
chore: Update version and changelog #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. | |||||
|
|
||||||
| ## [Unreleased] | ||||||
|
|
||||||
| ## [1.2.1] - 2026-07-20 | ||||||
|
|
||||||
| ### Changed | ||||||
| - Update composer.json to support Laravel 12 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changelog entries are more effective when they describe the feature or compatibility added (e.g., 'Add support for Laravel 12') rather than the specific file modified. Additionally, ensure that the
Suggested change
|
||||||
|
|
||||||
| ## [1.2.0] - 2026-07-04 | ||||||
|
|
||||||
| ### Added | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |||||
| "description": "A flexible plugin engine for Laravel applications", | ||||||
| "type": "library", | ||||||
| "license": "proprietary", | ||||||
| "version": "1.2.0", | ||||||
| "version": "1.2.1", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aligning with the 'minor release' intent and the addition of Laravel 12 support, the version should be bumped to
Suggested change
|
||||||
| "autoload": { | ||||||
| "psr-4": { | ||||||
| "WhileSmart\\LaravelPluginEngine\\": "src/" | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR description indicates this is a 'minor release', which should increment the second digit (1.3.0). Incrementing the third digit (1.2.1) signifies a patch/bug-fix release. Furthermore, updating dependency support is typically categorized under
### Changedrather than### Added.