Skip to content

Commit 9b684de

Browse files
committed
v0.6.2.3 - Add an upper-bound to witherable
1 parent 710c850 commit 9b684de

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for reflex
22

3+
## 0.6.2.3
4+
5+
* Add an upper-bound to witherable
6+
37
## 0.6.2.2
48

59
* Support these >= 1. Add `split-these` flag to control whether to use new these/semialign combination or not.

default.nix

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

reflex.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: reflex
2-
Version: 0.6.2.2
2+
Version: 0.6.2.3
33
Synopsis: Higher-order Functional Reactive Programming
44
Description: Reflex is a high-performance, deterministic, higher-order Functional Reactive Programming system
55
License: BSD3
@@ -74,7 +74,7 @@ library
7474
time >= 1.4 && < 1.9,
7575
transformers >= 0.5.6.0 && < 0.6,
7676
unbounded-delays >= 0.1.0.0 && < 0.2,
77-
witherable >= 0.2 && < 0.4
77+
witherable >= 0.3 && < 0.3.2
7878

7979
if flag(split-these)
8080
build-depends: these >= 1 && <1.1,

0 commit comments

Comments
 (0)