mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
* Changelog sub-sections should use h3, not h2; no need for hack anchor tag anymore * Internationalize dates to user’s locale * Consistent names * Split up the changelog into separate files per version; make HTML markup consistent with the other sections in the docs * Fix sidebar links for introduction and overview
592 B
592 B
releaseHeader('2013-02-25', '1.5.0', '1.4.0')
- First release of Literate CoffeeScript.
- The CoffeeScript REPL is now based on the Node.js REPL, and should work better and more familiarly.
- Returning explicit values from constructors is now forbidden. If you want to return an arbitrary value, use a function, not a constructor.
- You can now loop over an array backwards, without having to manually deal with the indexes:
for item in list by -1 - Source locations are now preserved in the CoffeeScript AST, although source maps are not yet being emitted.