From 1f7719963b49086096ecdb6af4bb8b25bbd71334 Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Thu, 28 May 2026 21:56:03 +0400 Subject: [PATCH 1/4] Prepare downstream for v3.0.0 release --- .env.example | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/composer.json b/composer.json index db55756..8fcfe6e 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", From f2d970266af8abaa9f9db9a68a9a5b13a15f3eff Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Thu, 28 May 2026 22:00:14 +0400 Subject: [PATCH 2/4] Add changelog for 3.0.0 release --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bbf1f79 --- /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` `3.0.0-rc.1` 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`. From 923d69ea9f04a839caa24764a51f95bc0d1a4019 Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Thu, 28 May 2026 22:09:00 +0400 Subject: [PATCH 3/4] Use semver constraint for quantum/framework --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 8fcfe6e..a378df2 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "type": "project", "require": { "php": "^7.4 || ^8.0", - "quantum/framework": "3.0.0", + "quantum/framework": "^3.0.0", "fakerphp/faker": "^1.15", "bluemmb/faker-picsum-photos-provider": "^2.0", "ottaviano/faker-gravatar": "^0.3.0", From bba398c5d2f31299851e709cbbc7b4b8923edbc9 Mon Sep 17 00:00:00 2001 From: Arman <407448+armanist@users.noreply.github.com> Date: Thu, 28 May 2026 22:20:02 +0400 Subject: [PATCH 4/4] Fix changelog previous framework constraint --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf1f79..e27c400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ The format is based on Keep a Changelog and this project adheres to Semantic Ver ## [3.0.0] - 2026-05-28 ### Changed -- Upgraded downstream framework dependency from `quantum/framework` `3.0.0-rc.1` to stable `3.0.0`. +- 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