Skip to content

Commit

Permalink
Prepare 0.0.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
robocoder committed Sep 16, 2013
1 parent 68cc775 commit 96329a5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# scssphp v0.0.7
# scssphp v0.0.8
### <http://leafo.net/scssphp>

[![Build Status](https://secure.travis-ci.org/leafo/scssphp.png)](http://travis-ci.org/leafo/scssphp)

`scssphp` is a compiler for SCSS written in PHP.

It implements SCSS 3.2.9. It does not implement the SASS syntax, only the SCSS
It implements SCSS 3.2.10. It does not implement the SASS syntax, only the SCSS
syntax.

Checkout the homepage, <http://leafo.net/scssphp>, for directions on how to use.
Expand Down
2 changes: 1 addition & 1 deletion scss.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* @author Leaf Corcoran <[email protected]>
*/
class scssc {
static public $VERSION = "v0.0.7";
static public $VERSION = "v0.0.8";

static protected $operatorNames = array(
'+' => "add",
Expand Down
7 changes: 6 additions & 1 deletion site/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The entire compiler comes in a single class file ready for including in any
kind of project in addition to a command line tool for running the compiler
from the terminal.

**scssphp** implements SCSS (3.2.9). It does not implement the SASS syntax,
**scssphp** implements SCSS (3.2.10). It does not implement the SASS syntax,
only the SCSS syntax.

Follow the author on twitter: [@moonscript](http://twitter.com/moonscript).
Expand Down Expand Up @@ -104,6 +104,11 @@ Find any issues? I'd love to fix them for you, post about them on [the issues tr
<div id="changelog"></div>
## Changelog

* **0.0.8** -- September 16, 2013
* Avoid IE7 content: counter bug
* Support transparent as color name
* Recursively create cache dir (turksheadsw)
* Fix for INPUT NOT FOUND (morgen32)
* **0.0.7** -- May 24, 2013
* Port various fixes from leafo/lessphp.
* Improve filter precision.
Expand Down
2 changes: 1 addition & 1 deletion site/site.moon
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require "sitegen"
tools = require "sitegen.tools"

sitegen.create_site =>
@current_version = "0.0.7"
@current_version = "0.0.8"
@title = "SCSS Compiler in PHP"

scssphp = tools.system_command "pscss < %s > %s", "css"
Expand Down

0 comments on commit 96329a5

Please sign in to comment.