Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 18, 2011
1 parent 5b0dfcd commit 7cc2612
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions History.md
@@ -1,4 +1,15 @@

0.6.0 / 2011-02-18
==================

* Added `stylus(1)` direct css to stylus file conversion [Mario]
For example instead of `$ stylus --css < foo.css > foo.styl`
you may now either `$ stylus --css foo.css` or provide
a destination path `$ stylus --css foo.css /tmp/out.styl`.

* Added postfix conditionals. Closes #74
Expressive ruby-ish syntax, ex: `padding 5px if allow-padding`.

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

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

exports.version = '0.5.3';
exports.version = '0.6.0';

/**
* Expose nodes.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{ "name": "stylus"
, "description": "Robust, expressive language which compiles to CSS"
, "version": "0.5.3"
, "version": "0.6.0"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
, "keywords": ["css", "parser", "style", "stylesheets", "jade", "language"]
, "main": "./index.js"
Expand Down

0 comments on commit 7cc2612

Please sign in to comment.