Skip to content

Commit 0726053

Browse files
committed
version bump
1 parent 423f6c2 commit 0726053

File tree

4 files changed

+27
-16
lines changed

4 files changed

+27
-16
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
# scssphp v0.0.4
1+
# scssphp v0.0.5
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.1.20. It does not implement the SASS syntax, only the SCSS
8+
It implements SCSS 3.2.7. 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.
1212

13-
1413
## Running Tests
1514

1615
`scssphp` uses [PHPUnit](https://github.com/sebastianbergmann/phpunit) for testing.

scss.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @author Leaf Corcoran <leafot@gmail.com>
1717
*/
1818
class scssc {
19-
static public $VERSION = "v0.0.4";
19+
static public $VERSION = "v0.0.5";
2020

2121
static protected $operatorNames = array(
2222
'+' => "add",

site/index.md

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The entire compiler comes in a single class file ready for including in any
1010
kind of project in addition to a command line tool for running the compiler
1111
from the terminal.
1212

13-
**scssphp** implements SCSS (3.1.20). It does not implement the SASS syntax,
13+
**scssphp** implements SCSS (3.2.7). It does not implement the SASS syntax,
1414
only the SCSS syntax.
1515

1616
Follow the author on twitter: [@moonscript](http://twitter.com/moonscript).
@@ -107,18 +107,30 @@ Find any issues? I'd love to fix them for you, post about them on [the issues tr
107107
<a name="changelog"></a>
108108
## Changelog
109109

110+
* **0.0.5** -- March 11, 2013
111+
* Better compile time errors
112+
* Fix top level properties inside of a nested `@media` (Anthon Pang)
113+
* Fix some issues with `@extends` (Anthon Pang)
114+
* Enhanced handling of `null` (Anthon Pang)
115+
* Helper functions shouldn't mix with css builtins (Anthon Pang)
116+
* Enhace selector parsing (Guilherme Blanco, Anthon Pang)
117+
* Add Placeholder selector support (Martin Hasoň)
118+
* Add variable argument support (Martin Hasoň)
119+
* Add zip, index, comparable functions (Martin Hasoň)
120+
* A bunch of parser and bug fixes
110121
* **0.0.4** -- [Import path can be a function](docs/#import_paths) (Christian
111-
Lück). Correctly parse media queries with more than one item (Christian
112-
Lück). Add `ie_hex_str`, `abs`, `min`, `max` functions (Martin Hasoň), ignore
113-
expressions inside of `calc()` (Martin Hasoň), Improve operator evaluation
114-
(Martin Hasoň), Add
115-
[`@content`](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#mixin-content)
116-
support. Misc bug fixes. (Nov 3nd, 2012)
122+
Lück). Correctly parse media queries with more than one item (Christian
123+
Lück). Add `ie_hex_str`, `abs`, `min`, `max` functions (Martin Hasoň), ignore
124+
expressions inside of `calc()` (Martin Hasoň), Improve operator evaluation
125+
(Martin Hasoň), Add
126+
[`@content`](http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#mixin-content)
127+
support. Misc bug fixes. (Nov 3nd, 2012)
117128
* **0.0.3** -- Add missing and/or/not operators. Expression evaluation happens
118-
correctly. Import file caching and _partial filename support. Misc bug
119-
fixes. (August 2nd, 2012)
120-
* **0.0.2** -- SCSS server is aware of imports, added custom function interface,
121-
compressed formatter, <a href="http://leafo.net/scssphp/docs/">documentation</a> (July 30th, 2012)
129+
correctly. Import file caching and _partial filename support. Misc bug fixes.
130+
(August 2nd, 2012)
131+
* **0.0.2** -- SCSS server is aware of imports, added custom function
132+
interface, compressed formatter, <a
133+
href="http://leafo.net/scssphp/docs/">documentation</a> (July 30th, 2012)
122134
* Initial Release v0.0.1 (July 29th, 2012)
123135

124136
<a name="comments"></a>

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

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

0 commit comments

Comments
 (0)