packages feed

reflex-process 0.3.3.1 → 0.3.3.2

raw patch · 2 files changed

+12/−8 lines, 2 filesdep ~basedep ~bytestringdep ~containers

Dependency ranges changed: base, bytestring, containers, data-default, text

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for reflex-process +## 0.3.3.2++* Update dependency version bounds+ ## 0.3.3.1  * Support for reflex-0.9.3
reflex-process.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: reflex-process-version: 0.3.3.1+version: 0.3.3.2 synopsis: Reflex FRP interface for running system processes description:   Run and interact with system processes from within a Reflex FRP application.@@ -17,7 +17,7 @@ extra-source-files: ChangeLog.md                     README.md tested-with:-  GHC ==8.6.5 || ==8.10.7 || ==9.6.1+  GHC ==8.10.7 || ==9.6.1  source-repository head   type: git@@ -26,11 +26,11 @@ library   exposed-modules: Reflex.Process                    Reflex.Process.Lines-  build-depends: base >=4.12 && <4.19+  build-depends: base >=4.12 && <5                , async >= 2 && < 3-               , bytestring >= 0.10 && < 0.12-               , containers >= 0.6 && < 0.7-               , data-default >= 0.2 && < 0.8+               , bytestring >= 0.10 && < 0.13+               , containers >= 0.6 && < 0.9+               , data-default >= 0.2 && < 0.9                , process >= 1.6.4 && < 1.7                , reflex >= 0.7.1 && < 1                , unix >= 2.7 && < 2.9@@ -42,13 +42,13 @@   main-is: README.lhs   ghc-options: -threaded -optL -q   build-depends: base-               , containers >= 0.5 && < 0.7+               , containers >= 0.5 && < 0.9                , data-default                , process                , reflex                , reflex-process                , reflex-vty >= 0.2 && < 0.7-               , text >= 1.2.3 && < 2.1+               , text >= 1.2.3 && < 2.2                , vty   default-language: Haskell2010