Skip to content

Commit

Permalink
Tag v0.1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
robocoder committed Jun 2, 2015
1 parent 8838e50 commit d3d6b83
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions site/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ Find any issues? I'd love to fix them for you, post about them on [the issues tr
<div id="changelog"></div>
## Changelog

* **0.1.4** -- June 2, 2015
* add new string functions (okj579)
* add compileFile() and checkCompile() (NoxNebula, saas786, panique)
* fix regular expression in findImport() (lucvn)
* needsCompile() shouldn't compare meta-etag with browser etag (edwinveldhuizen)
* **0.1.3** -- May 31, 2015
* map support (okj579)
* misc bug fixes (etu, bgarret, aaukt)
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.1.3"
@current_version = "0.1.4"
@title = "SCSS Compiler in PHP"

scssphp = tools.system_command "bin/pscss < %s > %s", "css"
Expand Down
2 changes: 1 addition & 1 deletion src/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
*/
class Compiler
{
static public $VERSION = 'v0.1.3';
static public $VERSION = 'v0.1.4';

static protected $operatorNames = array(
'+' => 'add',
Expand Down

0 comments on commit d3d6b83

Please sign in to comment.