Skip to content

Commit

Permalink
v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz committed Jun 3, 2011
1 parent 624f052 commit 4e5c996
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
v0.0.2 - June 4, 2011
---------------------

### Changed:
* Better string escaping
* Better handling of empty blocks
* Support for commas (eg: `a = 2, b = 3`)
* Returns and breaks are omitted when not needed
* Switch/case now uses `switch` instead of `if`
* Some other improvements

v0.0.1
------

Initial version.
1 change: 1 addition & 0 deletions lib/js2coffee.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ p = (str) ->
''

exports =
version: '0.0.2'
build: (str) ->
trim(build(parser.parse(str)))
UnsupportedError: UnsupportedError
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "JavaScript to CoffeeScript compiler",
"keywords": ["javascript", "coffeescript", "language", "compiler"],
"author": "Rico Sta. Cruz",
"version": "0.0.1",
"version": "0.0.2",
"engines": {
"node": ">=0.4.0"
},
Expand Down

0 comments on commit 4e5c996

Please sign in to comment.