Skip to content

Commit

Permalink
0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
satyr committed Aug 14, 2012
1 parent 9c3aa96 commit 3e8e54b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ Get [Node.js](http://nodejs.org) and [npm](http://npmjs.org), then:
- `git clone git://github.com/satyr/coco.git && cd coco && bin/coke i`

## Changelog
### 0.8.1
- Fixed [#162](https://github.com/satyr/coco/issues/162).

### 0.8.0
- Allowed hyphenated alphabets within identifiers as alias to their upper case:
`encode-URI-component` => `encodeURIComponent`
Expand Down
4 changes: 2 additions & 2 deletions extras/coco.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/coco.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ parser.lexer = {
return '';
}
};
exports.VERSION = '0.8.1b';
exports.VERSION = '0.8.1';
exports.compile = function(code, options){
var e, that;
try {
Expand Down
2 changes: 1 addition & 1 deletion package.co
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name : \coco
version : \0.8.0
version : \0.8.1

description : 'Unfancy CoffeeScript'
keywords :
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coco",
"version": "0.8.0",
"version": "0.8.1",
"description": "Unfancy CoffeeScript",
"keywords": [
"language",
Expand Down
2 changes: 1 addition & 1 deletion src/coco.co
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ parser import
upcomingInput : -> ''

exports import
VERSION: \0.8.1b
VERSION: \0.8.1

# Compiles a string of Coco code to JavaScript.
compile: (code, options) ->
Expand Down

0 comments on commit 3e8e54b

Please sign in to comment.