Changeset 2540
- Timestamp:
- 06/25/08 21:25:16 (7 months ago)
- Location:
- branches/0.11
- Files:
-
- 3 modified
-
RELEASE_NOTES (modified) (1 diff)
-
etc/phing/AgaviPackageTask.php (modified) (1 diff)
-
src/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/RELEASE_NOTES
r2471 r2540 1 1 AGAVI RELEASE NOTES 2 2 =================== 3 4 Version 0.11.2 - July ??, 2008 5 ============================== 6 7 This maintenance release fixes a number of bugs, comes with several changes to improve consistency, and also features a couple of new features. Some of these include: 8 9 - AgaviStringValidator can now trim an input string. 10 - AgaviDoctrineDatabase has been improved. 11 - <setting> elements in settings.xml can now be arrays by using <parameter>s. 12 - Data returned from a View is now available through $inner in the first template. 13 - File locking is now used anywhere files are being written (config compilation, caching). 14 - AgaviValidationManager::hasError() behavior was fixed to be consistent with getError(). 15 16 As always, the CHANGELOG has a comprehensive list of changes. 17 3 18 4 19 Version 0.11.1 - May 9, 2008 -
branches/0.11/etc/phing/AgaviPackageTask.php
r2467 r2540 106 106 $p2->addMaintainer('developer', 'v-dogg', 'Veikko Mäkinen', 'mail@veikkomakinen.com'); 107 107 $p2->setChannel('pear.agavi.org'); 108 $p2->setReleaseVersion('0.11. 1');109 $p2->setAPIVersion('0.11. 1');110 $p2->setReleaseStability(' stable');108 $p2->setReleaseVersion('0.11.2RC1'); 109 $p2->setAPIVersion('0.11.2RC1'); 110 $p2->setReleaseStability('beta'); 111 111 $p2->setAPIStability('stable'); 112 112 $p2->setSummary($shortDesc); -
branches/0.11/src/version.php
r2470 r2540 32 32 AgaviConfig::set('agavi.major_version', '0'); 33 33 AgaviConfig::set('agavi.minor_version', '11'); 34 AgaviConfig::set('agavi.micro_version', ' 1');35 // AgaviConfig::set('agavi.status', '');34 AgaviConfig::set('agavi.micro_version', '2'); 35 AgaviConfig::set('agavi.status', 'RC1'); 36 36 AgaviConfig::set('agavi.branch', '0.11'); 37 37

