diff --git a/.env.example b/.env.example index 6f8485c..81e654e 100644 --- a/.env.example +++ b/.env.example @@ -1,5 +1,5 @@ APP_NAME="Quantum PHP Framework" -APP_VERSION=2.9.9 +APP_VERSION=3.0.0 DB_DRIVER=mysql DB_HOST=localhost DB_NAME= diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e27c400 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on Keep a Changelog and this project adheres to Semantic Versioning. + +## [3.0.0] - 2026-05-28 + +### Changed +- Upgraded downstream framework dependency from `quantum/framework` `dev-master` to stable `3.0.0`. +- Updated `.env.example` default `APP_VERSION` from `2.9.9` to `3.0.0`. + +### Notes +- This release aligns the downstream project with upstream `quantum/framework` `3.0.0`. diff --git a/composer.json b/composer.json index db55756..a378df2 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "type": "project", "require": { "php": "^7.4 || ^8.0", - "quantum/framework": "dev-master", + "quantum/framework": "^3.0.0", "fakerphp/faker": "^1.15", "bluemmb/faker-picsum-photos-provider": "^2.0", "ottaviano/faker-gravatar": "^0.3.0",