Skip to content

Commit 61b8f84

Browse files
committed
v0.3
1 parent 4658ac3 commit 61b8f84

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

ChangeLog.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Revision history for reflex-fsnotify
22

3+
## 0.3.0.0
4+
5+
* Require fsnotify >= 0.4, which has a breaking API change
6+
* Support reflex-0.9
7+
38
## 0.2.1.3
49

510
Support GHC 8.10

reflex-fsnotify.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: reflex-fsnotify
3-
version: 0.2.1.3
3+
version: 0.3.0.0
44
synopsis: Reflex FRP interface for watching files
55
description:
66
Watch files and directories for changes using a functional-reactive interface!
@@ -24,7 +24,7 @@ library
2424
, containers >= 0.6 && < 0.7
2525
, directory >= 1.3 && < 1.4
2626
, filepath >= 1.4 && < 1.5
27-
, fsnotify >= 0.3 && < 0.4
27+
, fsnotify >= 0.4 && < 0.5
2828
, reflex >= 0.5 && < 1
2929
hs-source-dirs: src
3030
default-language: Haskell2010

release.nix

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
{ p ? import ./reflex-platform {}
1+
{ p ? import ./reflex-platform { __useNewerCompiler = true; }
22
}:
33
let
44
inherit (p.nixpkgs) lib;
5-
in p.ghc.callCabal2nix "reflex-fsnotify" ./. {}
5+
ghc = p.ghc.override {
6+
overrides = self: super: {
7+
fsnotify = p.nixpkgs.haskell.lib.dontCheck (self.callHackage "fsnotify" "0.4.1.0" {});
8+
};
9+
};
10+
in ghc.callCabal2nix "reflex-fsnotify" ./. {}

0 commit comments

Comments
 (0)