Skip to content

Commit a06d702

Browse files
committed
Prepare 0.0.9 release
1 parent b00d7c4 commit a06d702

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# scssphp v0.0.8
1+
# scssphp v0.0.9
22
### <http://leafo.net/scssphp>
33

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

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

8-
It implements SCSS 3.2.10. It does not implement the SASS syntax, only the SCSS
8+
It implements SCSS 3.2.12. It does not implement the SASS syntax, only the SCSS
99
syntax.
1010

1111
Checkout the homepage, <http://leafo.net/scssphp>, for directions on how to use.

scss.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* @author Leaf Corcoran <leafot@gmail.com>
4444
*/
4545
class scssc {
46-
static public $VERSION = "v0.0.8";
46+
static public $VERSION = "v0.0.9";
4747

4848
static protected $operatorNames = array(
4949
'+' => "add",

site/index.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The entire compiler comes in a single class file ready for including in any
77
kind of project in addition to a command line tool for running the compiler
88
from the terminal.
99

10-
**scssphp** implements SCSS (3.2.10). It does not implement the SASS syntax,
10+
**scssphp** implements SCSS (3.2.12). It does not implement the SASS syntax,
1111
only the SCSS syntax.
1212

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

107+
* **0.0.9** -- December 23, 2013
108+
* fix @for/@while inside @content block (sergeylukin)
109+
* fix functions in mixin_content (timonbaetz)
110+
* fix infinite loop when target extends itself (oscherler)
111+
* fix function arguments are lost inside of @content block
112+
* allow setting number precision (kasperisager)
113+
* add public function helpers (toBool, get, findImport, assertList, assertColor, assertNumber, throwError) (Burgov, atdt)
114+
* add optional cache buster prefix to serve() method (iMoses)
107115
* **0.0.8** -- September 16, 2013
108116
* Avoid IE7 content: counter bug
109117
* Support transparent as color name

site/site.moon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require "sitegen"
33
tools = require "sitegen.tools"
44

55
sitegen.create_site =>
6-
@current_version = "0.0.8"
6+
@current_version = "0.0.9"
77
@title = "SCSS Compiler in PHP"
88

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

0 commit comments

Comments
 (0)