Skip to content

Commit

Permalink
Prepare 2.0.0 Beta 3 (#1577)
Browse files Browse the repository at this point in the history
* Update release_notes.md

* Update changelog.md for 2.0.0 beta3

* typo in heading level

* Update numbers in version.php

* Update icms_version.php

* Update content changelog.md

* Update icms_version.php dates

* Update changelog.md with latest changes

* Update icms_version.php
  • Loading branch information
fiammybe authored Nov 25, 2024
1 parent eac03ae commit be65500
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
22 changes: 22 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# ImpressCMS ChangeLog

## ImpressCMS 2.0.0 beta 3
* Date: 26 Nov 2024
* DB Version: 48
* Build Version: 110

## What's Changed
* fix indirect variable handling in IPF select form element by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1574
* Remove use of $icmsModule in notification Handler.php by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1576
* fix the module update by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1572
* some last lingering $icmsModule uses by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1573
* Adding codeclimate configuration by @skenow in https://github.com/ImpressCMS/impresscms/pull/1582
* Adding automatic upgrades for 2 core tables by @skenow in https://github.com/ImpressCMS/impresscms/pull/1585
* Remove old columns from the users table Resolves #1561 by @skenow in https://github.com/ImpressCMS/impresscms/pull/1588
* handle if columns to remove from users table have already been removed by @skenow in https://github.com/ImpressCMS/impresscms/pull/1590
* Remove content file and delete during an upgrade if the module is not installed by @skenow in https://github.com/ImpressCMS/impresscms/pull/1592
* Removing extra code block for users table fields by @skenow in https://github.com/ImpressCMS/impresscms/pull/1591
* Convert to current global for $icmsModule by @skenow in https://github.com/ImpressCMS/impresscms/pull/1595
* Small bug fixes by @fiammybe in https://github.com/ImpressCMS/impresscms/pull/1594


**Full Changelog**: https://github.com/ImpressCMS/impresscms/compare/v2.0.0_beta_2...v2.0.0_beta3

## ImpressCMS 2.0.0 beta 2
* Date: 26 Sept 2024
* DB Version: 48
Expand Down
4 changes: 2 additions & 2 deletions htdocs/include/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @since Xoops
* @author phppp
*/
define('ICMS_VERSION_NAME', 'ImpressCMS 2.0.0 Beta 2');
define('ICMS_VERSION_NAME', 'ImpressCMS 2.0.0 Beta 3');

// For backward compatibility with XOOPS
define('XOOPS_VERSION', ICMS_VERSION_NAME);
Expand All @@ -30,7 +30,7 @@
*/
// 1.5.0 RC = 107; new 2.0.0 Beta 1=108

define('ICMS_VERSION_BUILD', 109);
define('ICMS_VERSION_BUILD', 110);

/**
* Latest dbversion of the System Module
Expand Down
6 changes: 3 additions & 3 deletions htdocs/modules/system/icms_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*/
$modversion = array(
'name' => _MI_SYSTEM_NAME,
'version' => '2.0.0',
'version' => '2.0.0b3',
'description' => _MI_SYSTEM_DESC,
'author' => "fiammybe",
'credits' => "The ImpressCMS Project",
Expand All @@ -64,9 +64,9 @@
'image' => "images/system_slogo.png", /* for backward compatibility */

/** Development information */
'status_version' => "Beta 2",
'status_version' => "Beta 3",
'status' => "beta",
'date' => "25 Sept 2024",
'date' => "26 Nov 2024",
'author_word' => "",
'warning' => _CO_ICMS_WARNING_BETA,

Expand Down
2 changes: 1 addition & 1 deletion release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ImpressCMS 2.0.0
# ImpressCMS 2.0.0 beta

This release of ImpressCMS realizes the majority of the original scope of the 2.0 release, started 10 years ago. It has been renamed 2.0.0. The focus is on providing compatibility with newer version of PHP (PHP7.x and PHP 8.x) and code cleanup. Existing modules that are compatible with the newer PHP versions should still work. This version, ImpressCMS 2.0.0, does require PHP versions 7.3 and above, and contains several corrections and security improvements compared to the previous release. Because of this requirement, the only database connection type is PDO, If your site is using the MySQL connection type, you will need to switch prior to moving to this version.

Expand Down

0 comments on commit be65500

Please sign in to comment.