v0.6.2.3 - Add an upper-bound to witherable

This commit is contained in:
Ali Abrar 2019-08-23 04:20:48 -04:00
parent 710c8508b9
commit 9b684de49e
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
# Revision history for reflex
## 0.6.2.3
* Add an upper-bound to witherable
## 0.6.2.2
* Support these >= 1. Add `split-these` flag to control whether to use new these/semialign combination or not.

View File

@ -12,7 +12,7 @@
}:
mkDerivation {
pname = "reflex";
version = "0.6.2.2";
version = "0.6.2.3";
src = builtins.filterSource (path: type: !(builtins.elem (baseNameOf path) [ ".git" "dist" ])) ./.;
libraryHaskellDepends = [
base bifunctors containers dependent-map dependent-sum

View File

@ -1,5 +1,5 @@
Name: reflex
Version: 0.6.2.2
Version: 0.6.2.3
Synopsis: Higher-order Functional Reactive Programming
Description: Reflex is a high-performance, deterministic, higher-order Functional Reactive Programming system
License: BSD3
@ -74,7 +74,7 @@ library
time >= 1.4 && < 1.9,
transformers >= 0.5.6.0 && < 0.6,
unbounded-delays >= 0.1.0.0 && < 0.2,
witherable >= 0.2 && < 0.4
witherable >= 0.3 && < 0.3.2
if flag(split-these)
build-depends: these >= 1 && <1.1,