Skip to content

Commit

Permalink
Bump to version: v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Dec 20, 2016
1 parent 71da3f0 commit a503ce4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
# Release notes for `m-io`

<a name="current-release"></a>
# 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
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -123,7 +123,7 @@ city

<a name="module_fs.exists"></a>

### .exists(existsPath) ⇒ <code>Promise.&lt;boolean&gt;</code>
### fs.exists(existsPath) ⇒ <code>Promise.&lt;boolean&gt;</code>
Custom implementation of [q-io/fs#exists](http://documentup.com/kriskowal/q-io#lexistsPath)
to avoid dependency on q-io

Expand All @@ -136,7 +136,7 @@ to avoid dependency on q-io

<a name="module_fs.listTree"></a>

### .listTree(directoryPath, filter) ⇒ <code>Promise.&lt;Array.&lt;string&gt;&gt;</code>
### fs.listTree(directoryPath, filter) ⇒ <code>Promise.&lt;Array.&lt;string&gt;&gt;</code>
Custom implementation of [q-io/fs#listTree](http://documentup.com/kriskowal/q-io#listtreepath-guardpath-stat)
to avoid dependency on q-io

Expand All @@ -150,7 +150,7 @@ to avoid dependency on q-io

<a name="module_fs.list"></a>

### .list(directoryPath) ⇒ <code>Promise.&lt;Array.&lt;string&gt;&gt;</code>
### fs.list(directoryPath) ⇒ <code>Promise.&lt;Array.&lt;string&gt;&gt;</code>
Custom implementation of [q-io/fs#list](http://documentup.com/kriskowal/q-io#listpath)
to avoid dependency on q-io

Expand All @@ -163,7 +163,7 @@ to avoid dependency on q-io

<a name="module_fs.makeTree"></a>

### .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 <code>[fs](#module_fs)</code>
Expand All @@ -175,7 +175,7 @@ Replacement for [q-io/fs#makeTree](http://documentup.com/kriskowal/q-io#maketree

<a name="module_fs.read"></a>

### .read(aPath)
### fs.read(aPath)
Replacement for [q-io/fs#read](http://documentup.com/kriskowal/q-io#readpath-options)

**Kind**: static method of <code>[fs](#module_fs)</code>
Expand Down
2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit a503ce4

Please sign in to comment.