diff --git a/CHANGELOG b/CHANGELOG index 7d17e8f46..ca0a358c5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,11 @@ THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT. +PL-node-v0.8.1 + - FIX: v8 is not pulling in values from global data.json + - FIX: MQ list breaks if media queries don't have spaces + - THX: @getsetbro for reporting these issues :D + - THX: @dmolsen for a cheat codes + PL-node-v0.8.0 - CHG: note the change in versioning to proper semver. wanted to do ths to inch closer to a 1.0.0 release - DEL: deleted most of the lingering PHP sync listener code diff --git a/builder/lineage_hunter.js b/builder/lineage_hunter.js index ac248c05d..3c8b0f9e9 100644 --- a/builder/lineage_hunter.js +++ b/builder/lineage_hunter.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.8.0 - 2015 + * patternlab-node - v0.8.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/media_hunter.js b/builder/media_hunter.js index a73f06c75..c6bdd645b 100644 --- a/builder/media_hunter.js +++ b/builder/media_hunter.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.8.0 - 2015 + * patternlab-node - v0.8.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/object_factory.js b/builder/object_factory.js index c88682ab4..51a0efff4 100644 --- a/builder/object_factory.js +++ b/builder/object_factory.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.8.0 - 2015 + * patternlab-node - v0.8.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/pattern_exporter.js b/builder/pattern_exporter.js index 3009d01c0..aa0695399 100644 --- a/builder/pattern_exporter.js +++ b/builder/pattern_exporter.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.8.0 - 2015 + * patternlab-node - v0.8.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/patternlab.js b/builder/patternlab.js index 48b06b197..f7450fbfa 100644 --- a/builder/patternlab.js +++ b/builder/patternlab.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.8.0 - 2015 + * patternlab-node - v0.8.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/patternlab_grunt.js b/builder/patternlab_grunt.js index 6ba3e35fc..b5507ecc5 100644 --- a/builder/patternlab_grunt.js +++ b/builder/patternlab_grunt.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.8.0 - 2015 + * patternlab-node - v0.8.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/package.json b/package.json index 1ce4a4912..a1ae5e2a1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "patternlab-node", "description": "Pattern Lab is a collection of tools to help you create atomic design systems. This is the node command line interface (CLI).", - "version": "0.8.0", + "version": "0.8.1", "devDependencies": { "grunt": "~0.4.0", "grunt-contrib-watch": "^0.6.1",