reflex-fsnotify 0.2.1.2 → 0.3.0.0
raw patch · 3 files changed
+15/−6 lines, 3 filesdep ~basedep ~fsnotifydep ~reflexPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, fsnotify, reflex
API changes (from Hackage documentation)
Files
- ChangeLog.md +9/−0
- README.md +1/−1
- reflex-fsnotify.cabal +5/−5
ChangeLog.md view
@@ -1,5 +1,14 @@ # Revision history for reflex-fsnotify +## 0.3.0.0++* Require fsnotify >= 0.4, which has a breaking API change+* Support reflex-0.9++## 0.2.1.3++Support GHC 8.10+ ## 0.2.1.2 * Support reflex 0.8
README.md view
@@ -1,5 +1,5 @@ # reflex-fsnotify -[](https://haskell.org) [](https://hackage.haskell.org/package/reflex-fsnotify) [](https://matrix.hackage.haskell.org/#/package/reflex-fsnotify) [](https://travis-ci.org/reflex-frp/reflex-fsnotify) [](https://github.com/reflex-frp/reflex-fsnotify/blob/master/LICENSE)+[](https://haskell.org) [](https://hackage.haskell.org/package/reflex-fsnotify) [](https://github.com/reflex-frp/reflex-fsnotify/blob/master/LICENSE) Watch files and directories for changes using a functional-reactive interface!
reflex-fsnotify.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: reflex-fsnotify-version: 0.2.1.2+version: 0.3.0.0 synopsis: Reflex FRP interface for watching files description: Watch files and directories for changes using a functional-reactive interface!@@ -16,16 +16,16 @@ build-type: Simple extra-source-files: ChangeLog.md README.md-tested-with: GHC ==8.8.3 || ==8.6.5+tested-with: GHC ==8.10.7 || ==8.8.4 || ==8.6.5 library exposed-modules: Reflex.FSNotify- build-depends: base >=4.10 && <4.14+ build-depends: base >=4.10 && <4.19 , containers >= 0.6 && < 0.7 , directory >= 1.3 && < 1.4 , filepath >= 1.4 && < 1.5- , fsnotify >= 0.3 && < 0.4- , reflex >= 0.5 && < 0.9+ , fsnotify >= 0.4 && < 0.5+ , reflex >= 0.5 && < 1 hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall