Skip to content

Commit

Permalink
Release 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 17, 2011
1 parent e246c8c commit 690a00e
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 2 deletions.
8 changes: 8 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

0.5.3 / 2011-02-17
==================

* Added `in` operator. `3 in nums`, `padding in props` etc
* Added `Expression#hash`, hashing all of the nodes in order
* Added tests for conditionals with braces. Closes #136
* Fixed ids that are also valid colors. Closes #137

0.5.2 / 2011-02-15
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/stylus.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exports = module.exports = render;
* Library version.
*/

exports.version = '0.5.2';
exports.version = '0.5.3';

/**
* Expose nodes.
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": "stylus"
, "description": "Robust, expressive language which compiles to CSS"
, "version": "0.5.2"
, "version": "0.5.3"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
, "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"]
, "main": "./index.js"
Expand Down
7 changes: 7 additions & 0 deletions test/cases/regression.137.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#fea-ca {
padding: 5px;
}
#ffffff {
padding: 5px;
foo: #fea -ca;
}
7 changes: 7 additions & 0 deletions test/cases/regression.137.styl
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

#fea-ca
padding 5px

#ffffff
padding 5px
foo #fea-ca

0 comments on commit 690a00e

Please sign in to comment.