Release 0.5.1

This commit is contained in:
Anthony Short 2014-08-05 10:35:59 -07:00
parent 5ae73bf90b
commit 412e5ef612
3 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,9 @@
0.5.1 / 2014-08-05
==================
* Fixed bug with require statement
0.5.0 / 2014-08-04 0.5.0 / 2014-08-04
================== ==================

View file

@ -4,7 +4,7 @@ var extend = require('extend');
var Matcher = require('minimatch').Minimatch; var Matcher = require('minimatch').Minimatch;
var unique = require('uniq'); var unique = require('uniq');
var read = require('fs').readFileSync; var read = require('fs').readFileSync;
var loadMetadata = require('load-metadata').sync; var loadMetadata = require('read-metadata').sync;
/** /**
* Expose `plugin`. * Expose `plugin`.

View file

@ -2,7 +2,7 @@
"name": "metalsmith-collections", "name": "metalsmith-collections",
"description": "A Metalsmith plugin that adds collections of files to the global metadata.", "description": "A Metalsmith plugin that adds collections of files to the global metadata.",
"repository": "git://github.com/segmentio/metalsmith-collections.git", "repository": "git://github.com/segmentio/metalsmith-collections.git",
"version": "0.5.0", "version": "0.5.1",
"license": "MIT", "license": "MIT",
"main": "lib/index.js", "main": "lib/index.js",
"dependencies": { "dependencies": {