From: <gem...@li...> - 2012-12-13 14:55:36
|
Revision: 1061 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=1061&view=rev Author: matijsdejong Date: 2012-12-13 14:55:27 +0000 (Thu, 13 Dec 2012) Log Message: ----------- Updated version numbers Modified Paths: -------------- trunk/library/classes/Gems/Versions.php trunk/library/classes/MUtil/Version.php trunk/library/configs/db/tables/gems__patch_levels.10.sql Modified: trunk/library/classes/Gems/Versions.php =================================================================== --- trunk/library/classes/Gems/Versions.php 2012-12-13 14:42:39 UTC (rev 1060) +++ trunk/library/classes/Gems/Versions.php 2012-12-13 14:55:27 UTC (rev 1061) @@ -51,15 +51,15 @@ public final function getBuild() { /** - * DO NOT FORGET !!! to update gems__patch_levels: + * DO NOT FORGET !!! to update GEMS__PATCH_LEVELS: * * For new installations the initial patch level should - * be THIS LEVEL. + * be THIS LEVEL plus one. * - * This means that future patches for the current level - * will be loaded, but that previous patches are ignored. + * This means that future patches for will be loaded, + * but that previous patches are ignored. */ - return 50; + return 51; } /** @@ -69,7 +69,7 @@ */ public final function getGemsVersion() { - return '1.5.7'; + return '1.5.8'; } /** Modified: trunk/library/classes/MUtil/Version.php =================================================================== --- trunk/library/classes/MUtil/Version.php 2012-12-13 14:42:39 UTC (rev 1060) +++ trunk/library/classes/MUtil/Version.php 2012-12-13 14:55:27 UTC (rev 1061) @@ -48,7 +48,7 @@ { const MAJOR = 1; const MINOR = 1; - const BUILD = 35; + const BUILD = 36; public static function get() { Modified: trunk/library/configs/db/tables/gems__patch_levels.10.sql =================================================================== --- trunk/library/configs/db/tables/gems__patch_levels.10.sql 2012-12-13 14:42:39 UTC (rev 1060) +++ trunk/library/configs/db/tables/gems__patch_levels.10.sql 2012-12-13 14:55:27 UTC (rev 1061) @@ -11,4 +11,4 @@ INSERT INTO gems__patch_levels (gpl_level, gpl_created) VALUES - (51, CURRENT_TIMESTAMP); + (52, CURRENT_TIMESTAMP); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |