-
Notifications
You must be signed in to change notification settings - Fork 94
/
CHANGES
115 lines (94 loc) · 3.1 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
Change History
==============
0.8.1 (2013-03-26)
------------------
- Bug fix: https://github.com/rspivak/slimit/pull/45
Fix syntax error in the output of for statement with some form of expressions
0.8.0 (2013-03-23)
------------------
- Python 3.x support
- Bug fix: https://github.com/rspivak/slimit/issues/42
slimit removes parentheses from ternary expression, causes syntax error in jQuery
- Bug fix: https://github.com/rspivak/slimit/issues/37
simple identifier in FOR init
- Bug fix: https://github.com/rspivak/slimit/issues/36
using $ for mangled function names conflicts with jQuery
0.7.4 (2012-06-5)
------------------
- Bug fix: https://github.com/rspivak/slimit/issues/34
'class' is reserved keyword now
0.7.3 (2012-05-21)
------------------
- Bug fix (unary op in FOR init): https://github.com/rspivak/slimit/pull/33
0.7.2 (2012-05-17)
------------------
- Added support for get/set properties:
https://github.com/rspivak/slimit/issues/32
0.7.1 (2012-05-10)
------------------
- Function call support in FOR init section:
https://github.com/rspivak/slimit/pull/31
0.7 (2012-04-16)
----------------
- Multiline string support: https://github.com/rspivak/slimit/issues/24
0.6.2 (2012-04-07)
------------------
- Bug fix: https://github.com/rspivak/slimit/issues/29
- Bug fix: https://github.com/rspivak/slimit/issues/28
0.6.1 (2012-03-15)
------------------
- Added command-line option *-t/--mangle-toplevel* to turn on
global scope name mangling. As of this version it's off by
default: https://github.com/rspivak/slimit/issues/27
- Removed dependency on a 'distribute' package
- Bug fix: https://github.com/rspivak/slimit/issues/26
- Bug fix: https://github.com/rspivak/slimit/issues/25
0.6 (2012-02-04)
----------------
- Added optimization: foo["bar"] ==> foo.bar
- Added base class for custom AST node visitors
- Documentation updates
- Bug fix: https://github.com/rspivak/slimit/issues/22
- Bug fix: https://github.com/rspivak/slimit/issues/21
0.5.5 (2011-10-05)
------------------
- Bugfix: https://github.com/rspivak/slimit/issues/7
0.5.4 (2011-10-01)
------------------
- Bugfix: https://github.com/rspivak/slimit/issues/6
Division with "this" fails
0.5.3 (2011-06-29)
------------------
- Bugfix: https://github.com/rspivak/slimit/issues/5
0.5.2 (2011-06-14)
------------------
- Bugfix: https://github.com/rspivak/slimit/issues/4
- Bugfix: https://github.com/rspivak/slimit/issues/3
0.5.1 (2011-06-06)
------------------
- Bugfix: https://github.com/rspivak/slimit/issues/2
0.5 (2011-06-06)
----------------
- Added name mangling
0.4 (2011-05-12)
----------------
- Minify more by removing block braces { }
- More tests
0.3.2 (2011-05-09)
------------------
- More hacks to use pre-generated lex and yacc tables when called from
the command line
0.3.1 (2011-05-09)
------------------
- Use pre-generated lex and yacc tables when called from the command line
0.3 (2011-05-09)
----------------
- Added minifier
0.2 (2011-05-07)
----------------
- Added a JavaScript parser
- Added pretty printer
- Added node visitor
0.1 (2011-05-02)
----------------
- Initial public version. It contains only a JavaScript lexer