reflex-ghci 0.1.3.0 → 0.1.3.1
raw patch · 3 files changed
+13/−9 lines, 3 filesdep ~basedep ~processdep ~reflex
Dependency ranges changed: base, process, reflex, reflex-process, reflex-vty, text
Files
- ChangeLog.md +4/−0
- reflex-ghci.cabal +8/−8
- src/Reflex/Process/GHCi.hs +1/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for reflex-ghci +## 0.1.3.1++* Update for compatibility with `reflex-process`-0.2.0.0.+ ## 0.1.3.0 * Library: Fix parsing of "Failed, n modules loaded." message
reflex-ghci.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: reflex-ghci-version: 0.1.3.0+version: 0.1.3.1 synopsis: A GHCi widget library for use in reflex applications description: Run GHCi from within a reflex application and interact with it using a functional-reactive interface.@@ -33,7 +33,7 @@ , process >= 1.6 && < 1.7 , reflex >= 0.6.3 && < 0.7 , reflex-fsnotify >= 0.2 && < 0.3- , reflex-process >= 0.1 && < 0.2+ , reflex-process >= 0.2 && < 0.3 , regex-tdfa >= 1.2.3 && < 1.3 , reflex-vty >= 0.1.3 && < 0.2 , text >= 1.2 && < 1.3@@ -46,14 +46,14 @@ hs-source-dirs: src-bin main-is: ghci.hs build-depends:- base >= 4.12 && < 4.13+ base , optparse-applicative >= 0.14.0 && < 0.16- , process >= 1.6 && < 1.7- , reflex >= 0.6.3 && < 0.7+ , process+ , reflex , reflex-ghci- , reflex-vty >= 0.1.3 && < 0.2- , reflex-process >= 0.1 && < 0.2- , text >= 1.2 && < 1.3+ , reflex-vty+ , reflex-process+ , text , vty >= 5.25 && < 5.26 ghc-options: -threaded -rtsopts default-language: Haskell2010
src/Reflex/Process/GHCi.hs view
@@ -212,7 +212,7 @@ -- ^ Event that fires when GHCi is reloading , _ghci_status :: Dynamic t Status -- ^ The current status of the GHCi process- , _ghci_process :: Process t+ , _ghci_process :: Process t ByteString ByteString } -- | The state of the GHCi process