diff --git a/CHANGELOG b/CHANGELOG index 6f19744b7..47e84b680 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,8 @@ THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT. +PL-node-v0.10.1 + - ADD: Added more unit tests for recently more-modular code + - FIX: Lineage was not working for patterns with pattern parameters + PL-node-v0.10.0 - ADD: Added support for pattern parameters! Resolves #88 - FIX: Data inheritance is now working as advertised. Resolves #127. This turned out to be a MAJOR thing, as I realized the home-page was not passing down any of its json data to partials. diff --git a/builder/lineage_hunter.js b/builder/lineage_hunter.js index 79fe7ba90..bb072bf74 100644 --- a/builder/lineage_hunter.js +++ b/builder/lineage_hunter.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.10.0 - 2015 + * patternlab-node - v0.10.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 db7fca6e5..3900d81ed 100644 --- a/builder/media_hunter.js +++ b/builder/media_hunter.js @@ -1,10 +1,10 @@ -/* - * patternlab-node - v0.10.0 - 2015 - * +/* + * patternlab-node - v0.10.1 - 2015 + * * Brian Muenzenmeyer, and the web community. - * Licensed under the MIT license. - * - * Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice. + * Licensed under the MIT license. + * + * Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice. * */ diff --git a/builder/object_factory.js b/builder/object_factory.js index fe6ca3a1c..f1809b16e 100644 --- a/builder/object_factory.js +++ b/builder/object_factory.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.10.0 - 2015 + * patternlab-node - v0.10.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/parameter_hunter.js b/builder/parameter_hunter.js index 6a4e758c2..0541b211f 100644 --- a/builder/parameter_hunter.js +++ b/builder/parameter_hunter.js @@ -1,10 +1,10 @@ -/* - * patternlab-node - v0.10.0 - 2015 - * +/* + * patternlab-node - v0.10.1 - 2015 + * * Brian Muenzenmeyer, and the web community. - * Licensed under the MIT license. - * - * Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice. + * Licensed under the MIT license. + * + * Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice. * */ diff --git a/builder/pattern_assembler.js b/builder/pattern_assembler.js index eaf2e5bcc..a024a7dac 100644 --- a/builder/pattern_assembler.js +++ b/builder/pattern_assembler.js @@ -1,10 +1,10 @@ -/* - * patternlab-node - v0.10.0 - 2015 - * +/* + * patternlab-node - v0.10.1 - 2015 + * * Brian Muenzenmeyer, and the web community. - * Licensed under the MIT license. - * - * Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice. + * Licensed under the MIT license. + * + * Many thanks to Brad Frost and Dave Olsen for inspiration, encouragement, and advice. * */ diff --git a/builder/pattern_exporter.js b/builder/pattern_exporter.js index e4cc7b0f2..61f62cccf 100644 --- a/builder/pattern_exporter.js +++ b/builder/pattern_exporter.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.10.0 - 2015 + * patternlab-node - v0.10.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/patternlab.js b/builder/patternlab.js index b72e79823..74e4c186f 100644 --- a/builder/patternlab.js +++ b/builder/patternlab.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.10.0 - 2015 + * patternlab-node - v0.10.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 3cd8d802e..a79854e6f 100644 --- a/builder/patternlab_grunt.js +++ b/builder/patternlab_grunt.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.10.0 - 2015 + * patternlab-node - v0.10.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/builder/pseudopattern_hunter.js b/builder/pseudopattern_hunter.js index 98137cbe8..b2b74a125 100644 --- a/builder/pseudopattern_hunter.js +++ b/builder/pseudopattern_hunter.js @@ -1,5 +1,5 @@ /* - * patternlab-node - v0.10.0 - 2015 + * patternlab-node - v0.10.1 - 2015 * * Brian Muenzenmeyer, and the web community. * Licensed under the MIT license. diff --git a/package.json b/package.json index 41cadb886..91df44efb 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.10.0", + "version": "0.10.1", "devDependencies": { "grunt": "~0.4.0", "grunt-contrib-watch": "^0.6.1",