Skip to content

Commit

Permalink
v0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-abrar committed May 26, 2023
1 parent 4658ac3 commit 61b8f84
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# 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
Expand Down
4 changes: 2 additions & 2 deletions reflex-fsnotify.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: >=1.10
name: reflex-fsnotify
version: 0.2.1.3
version: 0.3.0.0
synopsis: Reflex FRP interface for watching files
description:
Watch files and directories for changes using a functional-reactive interface!
Expand All @@ -24,7 +24,7 @@ library
, containers >= 0.6 && < 0.7
, directory >= 1.3 && < 1.4
, filepath >= 1.4 && < 1.5
, fsnotify >= 0.3 && < 0.4
, fsnotify >= 0.4 && < 0.5
, reflex >= 0.5 && < 1
hs-source-dirs: src
default-language: Haskell2010
Expand Down
9 changes: 7 additions & 2 deletions release.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{ p ? import ./reflex-platform {}
{ p ? import ./reflex-platform { __useNewerCompiler = true; }
}:
let
inherit (p.nixpkgs) lib;
in p.ghc.callCabal2nix "reflex-fsnotify" ./. {}
ghc = p.ghc.override {
overrides = self: super: {
fsnotify = p.nixpkgs.haskell.lib.dontCheck (self.callHackage "fsnotify" "0.4.1.0" {});
};
};
in ghc.callCabal2nix "reflex-fsnotify" ./. {}

0 comments on commit 61b8f84

Please sign in to comment.