From 8c08da585537e97efd528c7d278463d2b9396371 Mon Sep 17 00:00:00 2001 From: Anthon Pang Date: Tue, 12 Aug 2014 18:41:53 -0400 Subject: [PATCH] prepare 0.1.1 release --- README.md | 2 +- site/index.md | 2 ++ site/site.moon | 2 +- src/Compiler.php | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index db8b2fe7..0d09fde2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# scssphp v0.1.0 +# scssphp v0.1.1 ### [![Build Status](https://secure.travis-ci.org/leafo/scssphp.png)](http://travis-ci.org/leafo/scssphp) diff --git a/site/index.md b/site/index.md index 44f52800..894051ec 100644 --- a/site/index.md +++ b/site/index.md @@ -111,6 +111,8 @@ Find any issues? I'd love to fix them for you, post about them on [the issues tr
## Changelog +* **0.1.1** -- Aug 12, 2014 + * add stub classes -- a backward compatibility layer (vladimmi) * **0.1.0** -- Aug 9, 2014 * raise PHP requirement (5.3+) * reformat/reorganize source files to be PSR-2 compliant diff --git a/site/site.moon b/site/site.moon index 2fda9a7a..95afb926 100644 --- a/site/site.moon +++ b/site/site.moon @@ -3,7 +3,7 @@ require "sitegen" tools = require "sitegen.tools" sitegen.create_site => - @current_version = "0.1.0" + @current_version = "0.1.1" @title = "SCSS Compiler in PHP" scssphp = tools.system_command "bin/pscss < %s > %s", "css" diff --git a/src/Compiler.php b/src/Compiler.php index f16adf5f..5d36efbe 100644 --- a/src/Compiler.php +++ b/src/Compiler.php @@ -49,7 +49,7 @@ */ class Compiler { - static public $VERSION = 'v0.1.0'; + static public $VERSION = 'v0.1.1'; static protected $operatorNames = array( '+' => 'add',