diff --git a/CHANGELOG-2.1.md b/CHANGELOG-2.1.md index 2e4f97e11a..f4bdb2a13b 100644 --- a/CHANGELOG-2.1.md +++ b/CHANGELOG-2.1.md @@ -200,13 +200,6 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c * added a way to get parsing errors for Crawler::addHtmlContent() and Crawler::addXmlContent() via libxml functions * added support for submitting a form without a submit button -### EventDispatcher - - * added a reference to the EventDispatcher on the Event - * added a reference to the Event name on the event - * added fluid interface to the dispatch() method which now returns the Event object - * added GenericEvent event class - ### Form * [BC BREAK] ``read_only`` field attribute now renders as ``readonly="readonly"``, use ``disabled`` instead diff --git a/src/Symfony/Component/EventDispatcher/CHANGELOG.md b/src/Symfony/Component/EventDispatcher/CHANGELOG.md new file mode 100644 index 0000000000..21bc2aca8f --- /dev/null +++ b/src/Symfony/Component/EventDispatcher/CHANGELOG.md @@ -0,0 +1,15 @@ +CHANGELOG +========= + +2.1.0 +----- + + * added TraceableEventDispatcherInterface + * added ContainerAwareEventDispatcher + * added a reference to the EventDispatcher on the Event + * added a reference to the Event name on the event + * added fluid interface to the dispatch() method which now returns the Event + object + * added GenericEvent event class + * added the possibility for subscribers to subscribe several times for the + same event