1ChangeLog
2=========
3
42.0.2 (2015-05-19)
5------------------
6
7* This release has no functional changes. It's just been brought up to date
8  with the latest coding standards.
9
10
112.0.1 (2014-10-06)
12------------------
13
14* Fixed: `$priority` was ignored in `EventEmitter::once` method.
15* Fixed: Breaking the event chain was not possible in `EventEmitter::once`.
16
17
182.0.0 (2014-06-21)
19------------------
20
21* Added: When calling emit, it's now possible to specify a callback that will be
22  triggered after each method handled. This is dubbed the 'continueCallback' and
23  can be used to implement strategy patterns.
24* Added: Promise object!
25* Changed: EventEmitter::listeners now returns just the callbacks for an event,
26  and no longer returns the list by reference. The list is now automatically
27  sorted by priority.
28* Update: Speed improvements.
29* Updated: It's now possible to remove all listeners for every event.
30* Changed: Now uses psr-4 autoloading.
31
32
331.0.1 (2014-06-12)
34------------------
35
36* hhvm compatible!
37* Fixed: Issue #4. Compatiblitiy for PHP < 5.4.14.
38
39
401.0.0 (2013-07-19)
41------------------
42
43* Added: removeListener, removeAllListeners
44* Added: once, to only listen to an event emitting once.
45* Added README.md.
46
47
480.0.1-alpha (2013-06-29)
49------------------------
50
51* First version!
52