Skip to content

Commit

Permalink
Release 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 30, 2010
1 parent 87d0330 commit c0f5c34
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions History.md
@@ -1,4 +1,17 @@

0.5.5 / 2010-10-30
==================

* Add _coffeescript_ filter [Michael Hampton]
* Added link to _slim_; a ruby implementation
* Fixed quoted attributes issue.

* Fixed attribute issue with over greedy regexp.
Previously "p(foo=(((('bar')))))= ((('baz')))"
would __fail__ for example since the regexp
would lookahead to far. Now we simply pair
the delimiters.

0.5.4 / 2010-10-18
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/jade.js
Expand Up @@ -18,7 +18,7 @@ var Parser = require('./parser'),
* Library version.
*/

exports.version = '0.5.4';
exports.version = '0.5.5';

/**
* Intermediate JavaScript cache.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "jade",
"description": "Jade template engine",
"version": "0.5.4",
"version": "0.5.5",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"main": "./index.js",
"bin": { "jade": "./bin/jade" },
Expand Down

0 comments on commit c0f5c34

Please sign in to comment.