Skip to content

Commit 44398d0

Browse files
committed
Updating docs for CoffeeScript 0.5.4. Tag it and bag it.
1 parent 3feb874 commit 44398d0

6 files changed

Lines changed: 28 additions & 10 deletions

File tree

documentation/index.html.erb

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ alert reverse '!tpircseeffoC'</textarea></div>
111111

112112
<p>
113113
<b>Latest Version:</b>
114-
<a href="http://github.com/jashkenas/coffee-script/tarball/0.5.3">0.5.3</a>
114+
<a href="http://github.com/jashkenas/coffee-script/tarball/0.5.4">0.5.4</a>
115115
</p>
116116

117117
<h2>
@@ -153,10 +153,12 @@ alert reverse '!tpircseeffoC'</textarea></div>
153153

154154
<p>
155155
To install, first make sure you have a working version of
156-
<a href="http://nodejs.org/">Node.js</a> greater than version 0.1.30. Then clone the CoffeeScript
156+
<a href="http://nodejs.org/">Node.js</a> greater than version 0.1.30 (Node
157+
moves quickly, using the latest master is your best bet).
158+
Then clone the CoffeeScript
157159
<a href="http://github.com/jashkenas/coffee-script">source repository</a>
158160
from GitHub, or download the latest
159-
release: <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.3">0.5.3</a>.
161+
release: <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.4">0.5.4</a>.
160162
To install the CoffeeScript compiler system-wide
161163
under <tt>/usr/local</tt>, open the directory and run:
162164
</p>
@@ -795,6 +797,13 @@ coffee --print app/scripts/*.coffee > concatenation.js</pre>
795797
Change Log
796798
</h2>
797799

800+
<p>
801+
<b class="header" style="margin-top: 20px;">0.5.4</b>
802+
Bugfix that corrects the Node.js global constants <tt>__filename</tt> and
803+
<tt>__dirname</tt>. Tweaks for more flexible parsing of nested function
804+
literals and improperly-indented comments. Updates for the latest Node.js API.
805+
</p>
806+
798807
<p>
799808
<b class="header" style="margin-top: 20px;">0.5.3</b>
800809
CoffeeScript now has a syntax for defining classes. Many of the core

extras/coffee-script.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

9898
<p>
9999
<b>Latest Version:</b>
100-
<a href="http://github.com/jashkenas/coffee-script/tarball/0.5.3">0.5.3</a>
100+
<a href="http://github.com/jashkenas/coffee-script/tarball/0.5.4">0.5.4</a>
101101
</p>
102102

103103
<h2>
@@ -250,10 +250,12 @@ <h2>
250250

251251
<p>
252252
To install, first make sure you have a working version of
253-
<a href="http://nodejs.org/">Node.js</a> greater than version 0.1.30. Then clone the CoffeeScript
253+
<a href="http://nodejs.org/">Node.js</a> greater than version 0.1.30 (Node
254+
moves quickly, using the latest master is your best bet).
255+
Then clone the CoffeeScript
254256
<a href="http://github.com/jashkenas/coffee-script">source repository</a>
255257
from GitHub, or download the latest
256-
release: <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.3">0.5.3</a>.
258+
release: <a href="http://github.com/jashkenas/coffee-script/tarball/0.5.4">0.5.4</a>.
257259
To install the CoffeeScript compiler system-wide
258260
under <tt>/usr/local</tt>, open the directory and run:
259261
</p>
@@ -1676,6 +1678,13 @@ <h2>
16761678
Change Log
16771679
</h2>
16781680

1681+
<p>
1682+
<b class="header" style="margin-top: 20px;">0.5.4</b>
1683+
Bugfix that corrects the Node.js global constants <tt>__filename</tt> and
1684+
<tt>__dirname</tt>. Tweaks for more flexible parsing of nested function
1685+
literals and improperly-indented comments. Updates for the latest Node.js API.
1686+
</p>
1687+
16791688
<p>
16801689
<b class="header" style="margin-top: 20px;">0.5.3</b>
16811690
CoffeeScript now has a syntax for defining classes. Many of the core

lib/coffee-script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
return this.pos;
3333
}
3434
};
35-
exports.VERSION = '0.5.3';
35+
exports.VERSION = '0.5.4';
3636
// Compile CoffeeScript to JavaScript, using the Coffee/Jison compiler.
3737
exports.compile = function compile(code, options) {
3838
return (parser.parse(lexer.tokenize(code))).compile(options);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"description": "Unfancy JavaScript",
44
"keywords": ["javascript", "language"],
55
"author": "Jeremy Ashkenas",
6-
"version": "0.5.3"
6+
"version": "0.5.4"
77
}

src/coffee-script.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ parser.lexer: {
2424
showPosition: -> @pos
2525
}
2626

27-
exports.VERSION: '0.5.3'
27+
exports.VERSION: '0.5.4'
2828

2929
# Compile CoffeeScript to JavaScript, using the Coffee/Jison compiler.
3030
exports.compile: (code, options) ->

0 commit comments

Comments
 (0)