Skip to content

Commit

Permalink
Prepare 0.0.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
robocoder committed Dec 23, 2013
1 parent b00d7c4 commit a06d702
Show file tree
Hide file tree
Showing 4 changed files with 13 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.8
# scssphp v0.0.9
### <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.10. It does not implement the SASS syntax, only the SCSS
It implements SCSS 3.2.12. 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.8";
static public $VERSION = "v0.0.9";

static protected $operatorNames = array(
'+' => "add",
Expand Down
10 changes: 9 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.10). It does not implement the SASS syntax,
**scssphp** implements SCSS (3.2.12). 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,14 @@ 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.9** -- December 23, 2013
* fix @for/@while inside @content block (sergeylukin)
* fix functions in mixin_content (timonbaetz)
* fix infinite loop when target extends itself (oscherler)
* fix function arguments are lost inside of @content block
* allow setting number precision (kasperisager)
* add public function helpers (toBool, get, findImport, assertList, assertColor, assertNumber, throwError) (Burgov, atdt)
* add optional cache buster prefix to serve() method (iMoses)
* **0.0.8** -- September 16, 2013
* Avoid IE7 content: counter bug
* Support transparent as color name
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.8"
@current_version = "0.0.9"
@title = "SCSS Compiler in PHP"

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

0 comments on commit a06d702

Please sign in to comment.