Skip to content

Commit 96329a5

Browse files
committed
Prepare 0.0.8 release
1 parent 68cc775 commit 96329a5

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-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.7
1+
# scssphp v0.0.8
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.9. It does not implement the SASS syntax, only the SCSS
8+
It implements SCSS 3.2.10. 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.7";
46+
static public $VERSION = "v0.0.8";
4747

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

site/index.md

Lines changed: 6 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.9). It does not implement the SASS syntax,
10+
**scssphp** implements SCSS (3.2.10). 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,11 @@ 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.8** -- September 16, 2013
108+
* Avoid IE7 content: counter bug
109+
* Support transparent as color name
110+
* Recursively create cache dir (turksheadsw)
111+
* Fix for INPUT NOT FOUND (morgen32)
107112
* **0.0.7** -- May 24, 2013
108113
* Port various fixes from leafo/lessphp.
109114
* Improve filter precision.

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.7"
6+
@current_version = "0.0.8"
77
@title = "SCSS Compiler in PHP"
88

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

0 commit comments

Comments
 (0)