Skip to content

Commit

Permalink
Merge pull request #4263 from ExpressionEngine/version/7.4.9
Browse files Browse the repository at this point in the history
Version 7.4.9
  • Loading branch information
bryannielsen committed Apr 22, 2024
2 parents d890a88 + a961a8b commit 215d671
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build-tools/build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"tag": "7.4.8",
"tag": "7.4.9",

"repositories": {
"app": "git@github.com:ExpressionEngine/ExpressionEngine",
Expand Down
2 changes: 1 addition & 1 deletion system/ee/ExpressionEngine/Tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
define('BASEPATH', SYSPATH . 'ee/legacy/');
define('PATH_CACHE', SYSPATH . 'user/cache/');
define('APPPATH', BASEPATH);
define('APP_VER', '7.4.8');
define('APP_VER', '7.4.9');
define('PATH_THEMES', realpath(SYSPATH . '/../themes') . '/');
define('DOC_URL', 'http://our.doc.url/');
define('PATH_THIRD', SYSPATH . 'user/addons/');
Expand Down
2 changes: 1 addition & 1 deletion system/ee/installer/controllers/wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
class Wizard extends CI_Controller
{
public $version = '7.4.8'; // The version being installed
public $version = '7.4.9'; // The version being installed
public $installed_version = ''; // The version the user is currently running (assuming they are running EE)
public $schema = null; // This will contain the schema object with our queries
public $languages = array(); // Available languages the installer supports (set dynamically based on what is in the "languages" folder)
Expand Down
32 changes: 32 additions & 0 deletions system/ee/installer/updates/ud_7_04_09.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

/**
* This source file is part of the open source project
* ExpressionEngine (https://expressionengine.com)
*
* @link https://expressionengine.com/
* @copyright Copyright (c) 2003-2023, Packet Tide, LLC (https://www.packettide.com)
* @license https://expressionengine.com/license Licensed under Apache License, Version 2.0
*/

namespace ExpressionEngine\Updater\Version_7_4_9;

/**
* Update
*/
class Updater
{
public $version_suffix = '';

/**
* Do Update
*
* @return TRUE
*/
public function do_update()
{
return true;
}
}

// EOF
4 changes: 2 additions & 2 deletions system/ee/legacy/libraries/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public function bootstrap()

// application constants
define('APP_NAME', 'ExpressionEngine');
define('APP_BUILD', '20240418');
define('APP_VER', '7.4.8');
define('APP_BUILD', '20240422');
define('APP_VER', '7.4.9');
define('APP_VER_ID', '');
define('SLASH', '&#47;');
define('LD', '{');
Expand Down
2 changes: 1 addition & 1 deletion tests/cypress/support/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

$config['log_date_format'] = 'Y-m-d H:i:s';
$config['log_threshold'] = '1';
$config['app_version'] = '7.4.8';
$config['app_version'] = '7.4.9';
$config['encryption_key'] = '4b9e521eb02751d8466a3e9b764524aff14b91ad';
$config['session_crypt_key'] = '1f307a8afe66e692c2689508a5d9f783606379a8';
$config['base_path'] = $_SERVER['DOCUMENT_ROOT'];
Expand Down

0 comments on commit 215d671

Please sign in to comment.