Skip to content

Commit

Permalink
v0.6.2.3 - Add an upper-bound to witherable
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-abrar committed Aug 23, 2019
1 parent 710c850 commit 9b684de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions reflex.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 9b684de

Please sign in to comment.