trigger 1.0.0.0 → 1.0.1.0
raw patch · 3 files changed
+8/−10 lines, 3 filesdep ~processPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: process
API changes (from Hackage documentation)
Files
- README.md +2/−2
- src/Trigger.hs +1/−0
- trigger.cabal +5/−8
README.md view
@@ -57,8 +57,8 @@ tasks: - "stack build" run:- - command: "project/stack exec"- workingDir: "project"+ - command: "target/executable"+ workingDir: "target" env: - ["HOST", "localhost"] - ["PORT", "1234"]
src/Trigger.hs view
@@ -109,6 +109,7 @@ , new_session = False , child_group = Nothing , child_user = Nothing+ , use_process_jobs = True } splitCommand :: Text -> P.CmdSpec
trigger.cabal view
@@ -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