~ubuntu-branches/debian/experimental/php-sabre-event/experimental

« back to all changes in this revision

Viewing changes to ChangeLog.md

  • Committer: Package Import Robot
  • Author(s): David Prévot
  • Date: 2015-05-20 14:30:37 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20150520143037-noo5h59t2oakogf6
Tags: 2.0.2-1
* Use --bootstrap feature of PHPUnit instead of patches
* Update copyright (year)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
ChangeLog
2
 
=========
3
 
 
4
 
2.0.1 (2014-10-06)
5
 
------------------
6
 
 
7
 
* Fixed: `$priority` was ignored in `EventEmitter::once` method.
8
 
* Fixed: Breaking the event chain was not possible in `EventEmitter::once`.
9
 
 
10
 
2.0.0 (2014-06-21)
11
 
------------------
12
 
 
13
 
* Added: When calling emit, it's now possible to specify a callback that will be
14
 
  triggered after each method handled. This is dubbed the 'continueCallback' and
15
 
  can be used to implement strategy patterns.
16
 
* Added: Promise object!
17
 
* Changed: EventEmitter::listeners now returns just the callbacks for an event,
18
 
  and no longer returns the list by reference. The list is now automatically
19
 
  sorted by priority.
20
 
* Update: Speed improvements.
21
 
* Updated: It's now possible to remove all listeners for every event.
22
 
* Changed: Now uses psr-4 autoloading.
23
 
 
24
 
 
25
 
1.0.1 (2014-06-12)
26
 
------------------
27
 
 
28
 
* hhvm compatible!
29
 
* Fixed: Issue #4. Compatiblitiy for PHP < 5.4.14.
30
 
 
31
 
 
32
 
1.0.0 (2013-07-19)
33
 
------------------
34
 
 
35
 
* Added: removeListener, removeAllListeners
36
 
* Added: once, to only listen to an event emitting once.
37
 
* Added README.md.
38
 
 
39
 
 
40
 
0.0.1-alpha (2013-06-29)
41
 
------------------------
42
 
 
43
 
* First version!