From 48bd9de6376b3ebad67882597edc954380a11b7d Mon Sep 17 00:00:00 2001 From: Ibrahim BinAlshikh Date: Sun, 14 Jun 2026 14:55:38 +0300 Subject: [PATCH] chore: update version to 3.0.0 Stable --- WebFiori/Framework/AppBootstrapper.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WebFiori/Framework/AppBootstrapper.php b/WebFiori/Framework/AppBootstrapper.php index d74943d70..70bcce431 100644 --- a/WebFiori/Framework/AppBootstrapper.php +++ b/WebFiori/Framework/AppBootstrapper.php @@ -44,15 +44,15 @@ public static function boot(string $appFolder = 'App', string $publicFolder = 'p */ public static function initFrameworkVersionInfo(): void { if (!defined('WF_VERSION')) { - define('WF_VERSION', '3.0.0-RC.5'); + define('WF_VERSION', '3.0.0'); } if (!defined('WF_VERSION_TYPE')) { - define('WF_VERSION_TYPE', 'RC'); + define('WF_VERSION_TYPE', 'Stable'); } if (!defined('WF_RELEASE_DATE')) { - define('WF_RELEASE_DATE', '2026-05-31'); + define('WF_RELEASE_DATE', '2026-06-14'); } } /**