Changeset 2540

Show
Ignore:
Timestamp:
06/25/08 21:25:16 (7 months ago)
Author:
david
Message:

0.11.2 RC1 version info and 0.11.2 release notes

Location:
branches/0.11
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/RELEASE_NOTES

    r2471 r2540  
    11AGAVI RELEASE NOTES 
    22=================== 
     3 
     4Version 0.11.2 - July ??, 2008 
     5============================== 
     6 
     7This 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 
     16As always, the CHANGELOG has a comprehensive list of changes. 
     17 
    318 
    419Version 0.11.1 - May 9, 2008 
  • branches/0.11/etc/phing/AgaviPackageTask.php

    r2467 r2540  
    106106    $p2->addMaintainer('developer', 'v-dogg', 'Veikko Mäkinen', 'mail@veikkomakinen.com'); 
    107107    $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'); 
    111111    $p2->setAPIStability('stable'); 
    112112    $p2->setSummary($shortDesc); 
  • branches/0.11/src/version.php

    r2470 r2540  
    3232AgaviConfig::set('agavi.major_version', '0'); 
    3333AgaviConfig::set('agavi.minor_version', '11'); 
    34 AgaviConfig::set('agavi.micro_version', '1'); 
    35 // AgaviConfig::set('agavi.status', ''); 
     34AgaviConfig::set('agavi.micro_version', '2'); 
     35AgaviConfig::set('agavi.status', 'RC1'); 
    3636AgaviConfig::set('agavi.branch', '0.11'); 
    3737