|
From: <gem...@li...> - 2012-10-18 12:21:49
|
Revision: 989
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=989&view=rev
Author: mennodekker
Date: 2012-10-18 12:21:38 +0000 (Thu, 18 Oct 2012)
Log Message:
-----------
preparing for 1.5.6 release
Modified Paths:
--------------
trunk/library/classes/Gems/Upgrades.php
Removed Paths:
-------------
trunk/new_project/application/snippets/
Modified: trunk/library/classes/Gems/Upgrades.php
===================================================================
--- trunk/library/classes/Gems/Upgrades.php 2012-10-17 11:03:07 UTC (rev 988)
+++ trunk/library/classes/Gems/Upgrades.php 2012-10-18 12:21:38 UTC (rev 989)
@@ -62,6 +62,7 @@
$this->register(array($this, 'Upgrade152to153'), 'Upgrade from 1.5.2 to 1.5.3');
$this->register(array($this, 'Upgrade153to154'), 'Upgrade from 1.5.3 to 1.5.4');
$this->register(array($this, 'Upgrade154to155'), 'Upgrade from 1.5.4 to 1.5.5');
+ $this->register(array($this, 'Upgrade155to156'), 'Upgrade from 1.5.5 to 1.5.6');
/**
* To have the new_project updated to the highest level, update
@@ -150,4 +151,16 @@
return true;
}
+
+ /**
+ * To upgrade to 1.5.6 just execute patchlevel 48
+ */
+ public function Upgrade155to156()
+ {
+ $this->_batch->addTask('Db_ExecutePatch', 49);
+
+ $this->_batch->addTask('Echo', $this->_('Make sure to read the changelog as it contains important instructions'));
+
+ return true;
+ }
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|