Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update composer.json + Updated Framework Version #227

Merged
merged 4 commits into from
Jul 8, 2024
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
1 change: 0 additions & 1 deletion app/middleware/CoolMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
namespace app\middleware;

use webfiori\framework\middleware\AbstractMiddleware;
use webfiori\framework\session\SessionsManager;
use webfiori\http\Request;
use webfiori\http\Response;
/**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"webfiori/http":"v3.3.11",
"webfiori/file":"v1.3.6",
"webfiori/jsonx":"v3.3.0",
"webfiori/ui":"v2.6.1",
"webfiori/ui":"v2.6.3",
"webfiori/collections":"v1.1.4",
"webfiori/database":"v0.8.10",
"webfiori/cli":"v1.2.2",
Expand Down
4 changes: 2 additions & 2 deletions webfiori/framework/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ private function initFrameworkVersionInfo() {
*
* @since 2.1
*/
define('WF_VERSION', '3.0.0-Beta.8');
define('WF_VERSION', '3.0.0-Beta.9');
/**
* A constant that tells the type of framework version.
*
Expand All @@ -559,7 +559,7 @@ private function initFrameworkVersionInfo() {
*
* @since 2.1
*/
define('WF_RELEASE_DATE', '2024-05-20');
define('WF_RELEASE_DATE', '2024-07-09');
}

/**
Expand Down
Loading