From a503ce4c9d923ff1cc1ae141add9dfdde709fc48 Mon Sep 17 00:00:00 2001 From: Nils Knappmeier Date: Tue, 20 Dec 2016 01:02:06 +0100 Subject: [PATCH] Bump to version: v0.3.1 --- CHANGELOG.md | 4 ++++ README.md | 10 +++++----- package.json | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a8e4d8..54fdf20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release notes for `m-io` +# Version 0.3.1 (Tue, 20 Dec 2016 00:01:59 GMT) + +* [71da3f0](https://github.com/nknapp/m-io/commit/71da3f0) Fix: listTree must return an empty array if the directory does not exists - Nils Knappmeier + # Version 0.3.0 (Mon, 19 Dec 2016 23:50:04 GMT) * [a2f6d7a](https://github.com/nknapp/m-io/commit/a2f6d7a) Add missing examples - Nils Knappmeier diff --git a/README.md b/README.md index 2368b78..a91afa0 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ city -### .exists(existsPath) ⇒ Promise.<boolean> +### fs.exists(existsPath) ⇒ Promise.<boolean> Custom implementation of [q-io/fs#exists](http://documentup.com/kriskowal/q-io#lexistsPath) to avoid dependency on q-io @@ -136,7 +136,7 @@ to avoid dependency on q-io -### .listTree(directoryPath, filter) ⇒ Promise.<Array.<string>> +### fs.listTree(directoryPath, filter) ⇒ Promise.<Array.<string>> Custom implementation of [q-io/fs#listTree](http://documentup.com/kriskowal/q-io#listtreepath-guardpath-stat) to avoid dependency on q-io @@ -150,7 +150,7 @@ to avoid dependency on q-io -### .list(directoryPath) ⇒ Promise.<Array.<string>> +### fs.list(directoryPath) ⇒ Promise.<Array.<string>> Custom implementation of [q-io/fs#list](http://documentup.com/kriskowal/q-io#listpath) to avoid dependency on q-io @@ -163,7 +163,7 @@ to avoid dependency on q-io -### .makeTree(aPath, [mode]) +### fs.makeTree(aPath, [mode]) Replacement for [q-io/fs#makeTree](http://documentup.com/kriskowal/q-io#maketreepath-mode) **Kind**: static method of [fs](#module_fs) @@ -175,7 +175,7 @@ Replacement for [q-io/fs#makeTree](http://documentup.com/kriskowal/q-io#maketree -### .read(aPath) +### fs.read(aPath) Replacement for [q-io/fs#read](http://documentup.com/kriskowal/q-io#readpath-options) **Kind**: static method of [fs](#module_fs) diff --git a/package.json b/package.json index 8e8c22f..edb7a06 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "m-io", - "version": "0.3.0", + "version": "0.3.1", "description": "(Incomplete) replacement for q-io", "repository": { "type": "git",