v0.1.4+3

Updated readme w/ an example of defaultDocument
diff --git a/README.md b/README.md
index 00a757b..4797cc1 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,8 @@
 import 'package:shelf_static/shelf_static.dart';
 
 void main() {
-  var handler = createStaticHandler('files');
+  var handler = createStaticHandler('example/files', 
+      defaultDocument: 'index.html')
 
   io.serve(handler, 'localhost', 8080);
 }
diff --git a/pubspec.yaml b/pubspec.yaml
index 5e91d45..e502ac5 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: shelf_static
-version: 0.1.4+2
+version: 0.1.4+3
 author: Kevin Moore <github@j832.com>
 description: Static file server support for Shelf
 homepage: https://github.com/kevmoo/shelf_static.dart