From 22b369377e5db5a6a93cdb42485852fc652749c0 Mon Sep 17 00:00:00 2001 From: Anthon Pang <apang@softwaredevelopment.ca> Date: Mon, 22 Jun 2015 22:41:31 -0400 Subject: [PATCH] bump version to 0.1.6 --- README.md | 2 +- site/index.md | 6 ++++++ site/site.moon | 2 +- src/Version.php | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6bff1822..499a31cd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# scssphp v0.1.5 +# scssphp v0.1.6 ### <http://leafo.net/scssphp> [![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 c2cf07b0..55e8a056 100644 --- a/site/index.md +++ b/site/index.md @@ -111,6 +111,12 @@ 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.6** -- June 22, 2015 + * !global + * more built-in functions + * Server: checkedCachedCompile() (zimzat) + * Server: showErrorsAsCSS() to display errors in a pseudo-element (khamer) + * misc bug fixes * **0.1.5** -- June 2, 2015 * misc bug fixes * **0.1.4** -- June 2, 2015 diff --git a/site/site.moon b/site/site.moon index 207d5afd..9e42ad47 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.5" + @current_version = "0.1.6" @title = "SCSS Compiler in PHP" scssphp = tools.system_command "bin/pscss < %s > %s", "css" diff --git a/src/Version.php b/src/Version.php index 2d5b59fa..d518194b 100644 --- a/src/Version.php +++ b/src/Version.php @@ -19,5 +19,5 @@ */ class Version { - const VERSION = 'v0.1.5'; + const VERSION = 'v0.1.6'; }