Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.2.1] - 2026-07-20

Copy link
Copy Markdown

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 ### Changed rather than ### Added.

Suggested change
## [1.2.1] - 2026-07-20
## [1.3.0] - 2026-07-20
### Changed


### Changed
- Update composer.json to support Laravel 12

Copy link
Copy Markdown

Choose a reason for hiding this comment

The 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 require section in composer.json is actually updated to include Laravel 12 constraints (e.g., ^12.0), as those changes are not visible in the current diff.

Suggested change
- Update composer.json to support Laravel 12
- Add support for Laravel 12


## [1.2.0] - 2026-07-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A flexible plugin engine for Laravel applications",
"type": "library",
"license": "proprietary",
"version": "1.2.0",
"version": "1.2.1",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The 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 1.3.0 instead of 1.2.1.

Suggested change
"version": "1.2.1",
"version": "1.3.0",

"autoload": {
"psr-4": {
"WhileSmart\\LaravelPluginEngine\\": "src/"
Expand Down
Loading