Skip to content

Commit 9bc1c19

Browse files
committed
Bump dependent-sum to latest version
There are some constructor changes and deprecations that this bump introduces, but reflex-dom has started to require the newer version as well.
1 parent 7ef47af commit 9bc1c19

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}:
1212
mkDerivation {
1313
pname = "reflex";
14-
version = "0.6.1";
14+
version = "0.6.1.1";
1515
src = builtins.filterSource (path: type: !(builtins.elem (baseNameOf path) [ ".git" "dist" ])) ./.;
1616
libraryHaskellDepends = [
1717
base bifunctors containers dependent-map dependent-sum

reflex.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: reflex
2-
Version: 0.6.1
2+
Version: 0.6.1.1
33
Synopsis: Higher-order Functional Reactive Programming
44
Description: Reflex is a high-performance, deterministic, higher-order Functional Reactive Programming system
55
License: BSD3
@@ -133,7 +133,7 @@ library
133133
if flag(use-template-haskell)
134134
cpp-options: -DUSE_TEMPLATE_HASKELL
135135
build-depends:
136-
dependent-sum >= 0.3 && < 0.5,
136+
dependent-sum >= 0.5 && < 0.6,
137137
haskell-src-exts >= 1.16 && < 1.22,
138138
haskell-src-meta >= 0.6 && < 0.9,
139139
template-haskell >= 2.9 && < 2.15
@@ -142,7 +142,7 @@ library
142142
other-extensions: TemplateHaskell
143143
else
144144
build-depends:
145-
dependent-sum == 0.4.*
145+
dependent-sum == 0.5.*
146146

147147
if flag(fast-weak) && impl(ghcjs)
148148
cpp-options: -DGHCJS_FAST_WEAK

0 commit comments

Comments
 (0)