diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -57,8 +57,8 @@
   tasks: 
     - "stack build"
   run:
-    - command: "project/stack exec"
-      workingDir: "project"
+    - command: "target/executable"
+      workingDir: "target"
       env:
         - ["HOST", "localhost"]
         - ["PORT", "1234"]
diff --git a/src/Trigger.hs b/src/Trigger.hs
--- a/src/Trigger.hs
+++ b/src/Trigger.hs
@@ -109,6 +109,7 @@
   , new_session = False
   , child_group = Nothing
   , child_user = Nothing
+  , use_process_jobs = True
   }
 
 splitCommand :: Text -> P.CmdSpec
diff --git a/trigger.cabal b/trigger.cabal
--- a/trigger.cabal
+++ b/trigger.cabal
@@ -1,16 +1,13 @@
 name:                trigger
-version:             1.0.0.0
+version:             1.0.1.0
 homepage:            https://github.com/rhyskeepence/trigger
-license:             MIT
+license:             BSD3
 license-file:        LICENSE
 author:              Rhys Keepence
 maintainer:          rhys@rhyskeepence.com
 copyright:           2017 Rhys Keepence
-synopsis:            Cross platform file system watcher
-description:         Trigger is a cross platform file system watcher for super fast build-and-restart workflows. When files change, it can be configured to:
-                     * run build tasks
-                     * restart your app in the background
-category:            Build
+synopsis:            Trigger is a cross platform file system watcher for super fast build-and-restart workflows.
+category:            Web
 build-type:          Simple
 cabal-version:       >=1.10
 extra-source-files:  README.md
@@ -27,7 +24,7 @@
                      , formatting
                      , fsnotify
                      , Glob
-                     , process
+                     , process >= 1.5
                      , protolude
                      , text
                      , time
