dbc1b1777e919476fc9c3e9ddf8726e7497aff7f
[platform/framework/web/crosswalk-tizen.git] /
1 v0.3.3  --  2015.01.30
2 * Fix reference to module in benchmarks
3
4 v0.3.2  --  2015.01.20
5 * Improve documentation
6 * Configure lint scripts
7 * Fix spelling of LICENSE
8
9 v0.3.1  --  2014.04.25
10 * Fix redefinition of emit method in `pipe`
11 * Allow custom emit method name in `pipe`
12
13 v0.3.0  --  2014.04.24
14 * Move out from lib folder
15 * Do not expose all utilities on main module
16 * Support objects which do not inherit from Object.prototype
17 * Improve arguments validation
18 * Improve internals
19 * Remove Makefile
20 * Improve documentation
21
22 v0.2.2  --  2013.06.05
23 * `unify` functionality
24
25 v0.2.1  --  2012.09.21
26 * hasListeners module
27 * Simplified internal id (improves performance a little), now it starts with
28   underscore (hint it's private). Abstracted it to external module to have it
29   one place
30 * Documentation cleanup
31
32 v0.2.0  --  2012.09.19
33 * Trashed poor implementation of v0.1 and came up with something solid
34
35 Changes:
36 * Improved performance
37 * Fixed bugs event-emitter is now cross-prototype safe and not affected by
38   unexpected methods attached to Object.prototype
39 * Removed support for optional "emitter" argument in `emit` method, it was
40   cumbersome to use, and should be solved just with event objects
41
42 v0.1.5  --  2012.08.06
43 * (maintanance) Do not use descriptors for internal objects, it exposes V8 bugs
44   (only Node v0.6 branch)
45
46 v0.1.4  --  2012.06.13
47 * Fix detachment of listeners added with 'once'
48
49 v0.1.3  --  2012.05.28
50 * Updated es5-ext to latest version (v0.8)
51 * Cleared package.json so it's in npm friendly format
52
53 v0.1.2  --  2012.01.22
54 * Support for emitter argument in emit function, this allows some listeners not
55   to be notified about event
56 * allOff - removes all listeners from object
57 * All methods returns self object
58 * Internal fixes
59 * Travis CI integration
60
61 v0.1.1  --  2011.08.08
62 * Added TAD test suite to devDependencies, configured test commands.
63   Tests can be run with 'make test' or 'npm test'
64
65 v0.1.0  --  2011.08.08
66 Initial version