Skip to content
Merged
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
8 changes: 4 additions & 4 deletions WebFiori/Framework/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public static function getRunner() : Runner {
'\\WebFiori\\Framework\\Cli\\Commands\\VersionCommand',

'\\WebFiori\\Framework\\Cli\\Commands\\SchedulerCommand',
'\\WebFiori\\Framework\\Cli\\Commands\\SchedulerRunCommand',
'\\WebFiori\\Framework\\Cli\\Commands\\SchedulerRunCommand',
'\\WebFiori\\Framework\\Cli\\Commands\\SchedulerDaemonCommand',
'\\WebFiori\\Framework\\Cli\\Commands\\AddDbConnectionCommand',
'\\WebFiori\\Framework\\Cli\\Commands\\AddSmtpConnectionCommand',
Expand Down Expand Up @@ -431,23 +431,23 @@ public static function initFrameworkVersionInfo() {
*
* @since 2.1
*/
define('WF_VERSION', '3.0.0-RC0');
define('WF_VERSION', '3.0.0-RC1');
/**
* A constant that tells the type of framework version.
*
* The constant can have values such as 'Alpha', 'Beta' or 'Stable'.
*
* @since 2.1
*/
define('WF_VERSION_TYPE', 'Release Candidate');
define('WF_VERSION_TYPE', 'RC');
/**
* The date at which the framework version was released.
*
* The value of the constant will be a string in the format YYYY-MM-DD.
*
* @since 2.1
*/
define('WF_RELEASE_DATE', '2026-04-09');
define('WF_RELEASE_DATE', '2026-04-30');
}
/**
* Initiate main components of the application.
Expand Down
Loading