[Finder] added CHANGELOG

This commit is contained in:
Fabien Potencier 2012-04-26 21:57:04 +02:00
parent a389345d0c
commit f015f330fb
2 changed files with 14 additions and 6 deletions

View File

@ -211,12 +211,6 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
* created this new component
### Finder
* Finder::exclude() now supports an array of directories as an argument
* new methods Finder::contains() and Finder::notContains() support searching based on content
* Comparator now supports != operator
### Form
* [BC BREAK] ``read_only`` field attribute now renders as ``readonly="readonly"``, use ``disabled`` instead

View File

@ -0,0 +1,14 @@
CHANGELOG
=========
2.1.0
-----
* added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and
Finder::sortByModifiedTime()
* added Countable to Finder
* added support for an array of directories as an argument to
Finder::exclude()
* added searching based on the file content via Finder::contains() and
Finder::notContains()
* added support for the != operator in the Comparator