-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGELOG
208 lines (118 loc) · 2.99 KB
/
CHANGELOG
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
### 0.6.15
* fixed nested foreach namespace
### 0.6.14
* added extended callback as class static method
```
class Foo {
static function extended(klass) {
// do stuff to child class
}
}
// extended called
class Bar extends Foo {
}
```
### 0.6.13
* fixing bad merge
### 0.6.12
* allowing arbitrary mochiscript code in foreach braces
* a little bit better error reporting when there is a parse error
### 0.6.11
* allowing trailing foreach statements
* adding tests for inline heredocs
```
var str = foo.map(#{ => <<END; }).join("\n");
hello
END
```
### 0.6.10
* adding mochi filter for jade ($m.setupJade(jade))
### 0.6.9
* adding "##" syntax for shorthand functions to execute in place
### 0.6.8
* fixing space in arguments tokenizing error
* fixing shorthand methods at the end of hash declarations
### 0.6.6
* adding compile to bin
### 0.6.5
* fixed string buffer template problem
### 0.6.4
* experimenting with "watch compiling" -- ms-compile <from dir> <to dir> <template file?>
### 0.6.3
* patch compiler bug
### 0.6.2
* compiler registration
```
$m.registerCompiler(require('express').compiler);
```
### 0.6.1
* arbitrary code after the initial heredoc declaration (see tests/heredocs.ms "test4")
### 0.6.0
* removed auto semicolon for heredoc
### 0.5.7
* added middleware for express/connect
### 0.5.6
* merged 0.5.4
### 0.5.5
* compile support for connect
### 0.5.4
* added haml filter support
### 0.5.3
* fixed self problem in bootstrap
### 0.5.2
* fixed #3
### 0.5.0
* adding shortcut for returning "=> foo"
* sinatra support
* removing jsml
### 0.4.6.pre3
* fixing #590
### 0.4.6.pre2
* adding auto return to shortcut mappers
### 0.4.6.pre1
* adding shortcut mappers
### 0.4.5
* merged 0.4.4.pre1 changes
### 0.4.4 (yanked)
* fixed gem package build error
* fixed npm bin execute probelm
* added ms-parse and ms-run in gem's bin dir
* improved gem/npm publish command
### 0.4.4.pre1
* added self to methods
### 0.4.3.pre4
* fixing node bin files
### 0.4.3.pre
* adding jsml support
* dog-fooding
* took out string interpolation for heredocs for now
### 0.4.0
* adding experimental export and public classes for common.js
### 0.4.0.pre14
* lookback error when no spacing
### 0.4.0.pre13
* lookback off by 1
* added pp for printing tree
### 0.4.0.pre12
* regex bug
* rails support
### 0.4.0.pre11
* adding boot strap for web browsers
### 0.4.0.pre10
* multi-line comment parsing fix
### 0.4.0.pre8
* adding filename to module._compile for better debugging
### 0.4.0.pre7
* added node adapter for system calls
### 0.4.0.pre6
* fixed divide/regex bug with spacing
### 0.4.0.pre5
* fixed bad merge
### 0.4.0.pre4
* fixed foreach length bug
### 0.4.0.pre3
* fixed "module" keyword conflict bug
### 0.4.0.pre2
* adding static var/function
* adding jsml
* adding divide/regex parsing support