diff --git a/NEWS b/NEWS index 86d56ab..8549742 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,14 @@ TangoCMS NEWS (Basic ChangeLog for Users) A complete ChangeLog can be found at http://tangocms.org/changelog +2.5.6 (2010-10-17) +======================== + +-- Bug Fixes + + * Bug #317: WYSIWYG editor changes text to "[object Object]" + + 2.5.5 (2010-06-15) ======================== diff --git a/README b/README index 2e50fc5..d773c84 100644 --- a/README +++ b/README @@ -7,7 +7,7 @@ Details ======================== * TangoCMS, http://tangocms.org, is an Open Source (GNU/GPL 2.1) PHP Content Management System (CMS). - * Version, 2.5.5 + * Version, 2.5.6 * Advised to read the User Guide/Manual, http://manual.tangocms.org, prior to installation. * For more support, see http://tangocms.org/community for details on how to get community support on any issue you may have. diff --git a/config/default.dist/config.ini.php b/config/default.dist/config.ini.php index d162dc0..d6a7bbf 100644 --- a/config/default.dist/config.ini.php +++ b/config/default.dist/config.ini.php @@ -151,7 +151,7 @@ title = "Powered By TangoCMS" title_format = "[PAGE] | [SITE_TITLE]" slogan = "Powered by TangoCMS" -version = 2.5.5 +version = 2.5.6 ;--- ; Meta Data diff --git a/install/index.php b/install/index.php index eebfc87..ca45175 100644 --- a/install/index.php +++ b/install/index.php @@ -20,7 +20,7 @@ define( '_PATH_APPLICATION', '../application' ); define( '_APP_MODE', 'installation' ); - define( '_PROJECT_LATEST_VERSION', '2.5.5' ); + define( '_PROJECT_LATEST_VERSION', '2.5.6' ); // Include the main index.php file require_once '../index.php'; diff --git a/install/modules/upgrade/controllers/stage1.php b/install/modules/upgrade/controllers/stage1.php index dcc899f..d8f61e4 100644 --- a/install/modules/upgrade/controllers/stage1.php +++ b/install/modules/upgrade/controllers/stage1.php @@ -22,7 +22,7 @@ class Upgrade_controller_stage1 extends Zula_ControllerBase { # Stable versions '2.3.0', '2.3.1', '2.3.2', '2.3.3', '2.4.0', - '2.5.0', '2.5.1', '2.5.2', '2.5.3', '2.5.4', + '2.5.0', '2.5.1', '2.5.2', '2.5.3', '2.5.4', '2.5.5', # Dev versions '2.3.50', '2.3.51', '2.3.52', '2.3.53', '2.3.54', '2.3.55', '2.3.56', diff --git a/install/modules/upgrade/controllers/stage4.php b/install/modules/upgrade/controllers/stage4.php index d2c5a56..78765fb 100644 --- a/install/modules/upgrade/controllers/stage4.php +++ b/install/modules/upgrade/controllers/stage4.php @@ -21,6 +21,7 @@ class Upgrade_controller_stage4 extends Zula_ControllerBase { */ protected $routes = array( # Stable Releases + '2.5.5' => '2.5.6', '2.5.4' => '2.5.5', '2.5.3' => '2.5.4', '2.5.2' => '2.5.3',