From e203591fe88e212d6deb7e814deed5f57dbbc01c Mon Sep 17 00:00:00 2001 From: Nils Knappmeier Date: Wed, 16 Mar 2016 22:49:36 +0100 Subject: [PATCH] Bump to version: v0.8.4 --- CHANGELOG.md | 6 ++++++ README.md | 20 -------------------- package.json | 2 +- 3 files changed, 7 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff56f5f..ea990fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). +# Version 0.8.4 (Wed, 16 Mar 2016 21:49:32 GMT) + +* [92c2ab0](https://github.com/bootprint/customize/commit/92c2ab0) Remove unnecessary debug output - Nils Knappmeier + + + # Version 0.8.3 (Tue, 15 Mar 2016 13:46:57 GMT) * [2b04495](https://github.com/bootprint/customize/commit/2b04495) Adjust travis-configuration - Nils Knappmeier diff --git a/README.md b/README.md index b574c10..643a4c3 100644 --- a/README.md +++ b/README.md @@ -147,12 +147,6 @@ The example creates a new Customize-instances, registers our engine under the na config. This example prints the following result. ```js -custom false {} -debugState false {} -custom false { files: { config: {}, watched: [] } } -debugState false { files: { config: {}, watched: [] } } -custom false { files: { state: 'pending' } } -debugState false { files: { state: 'pending' } } { files: { 'a.md': { path: 'dir1/a.md', contents: 'First file (from dir1)' }, 'b.md': { path: 'dir1/b.md', contents: 'Second file (from dir1)' } } } @@ -184,12 +178,6 @@ The engines `run()`-method will now be executed with the resolved configuration, which yields the following output: ``` -custom false {} -debugState false {} -custom false { files: { config: {}, watched: [] } } -debugState false { files: { config: {}, watched: [] } } -custom false { files: { state: 'pending' } } -debugState false { files: { state: 'pending' } } { 'concat.txt': 'First file (from dir1)\nSecond file (from dir1)\n' } ``` @@ -246,14 +234,6 @@ so that in the above example, the property `a.md` is replace by the value in the second configuration. So the output of this example is ``` -custom false {} -debugState false {} -custom false { files: { config: {}, watched: [] } } -debugState false { files: { config: {}, watched: [] } } -custom false { files: { state: 'pending' } } -debugState false { files: { state: 'pending' } } -custom false { files: { state: 'pending' } } -debugState false { files: { state: 'pending' } } { 'concat.txt': 'First file (from dir2)\nSecond file (from dir1)\n' } ``` diff --git a/package.json b/package.json index ae8de74..c9925b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "customize", - "version": "0.8.3", + "version": "0.8.4", "description": "A simple framework to create customizable engines", "repository": { "type": "git",