diff --git a/ChangeLog.md b/ChangeLog.md index 18f064b..7bcecf8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,8 +1,9 @@ # Revision history for reflex -## Unreleased +## 0.6.2.0 -* Fix `holdDyn` so that it is lazy in its event argument +* Stop using the now-deprecated `*Tag` classes (e.g., `ShowTag`). +* Fix `holdDyn` so that it is lazy in its event argument. ## 0.6.1.0 diff --git a/default.nix b/default.nix index 0305c6c..eab1e19 100644 --- a/default.nix +++ b/default.nix @@ -11,7 +11,7 @@ }: mkDerivation { pname = "reflex"; - version = "0.6.1.1"; + version = "0.6.2.0"; src = builtins.filterSource (path: type: !(builtins.elem (baseNameOf path) [ ".git" "dist" ])) ./.; libraryHaskellDepends = [ base bifunctors containers dependent-map dependent-sum diff --git a/reflex.cabal b/reflex.cabal index 0ae6ca2..40ad9ea 100644 --- a/reflex.cabal +++ b/reflex.cabal @@ -1,5 +1,5 @@ Name: reflex -Version: 0.6.1.1 +Version: 0.6.2.0 Synopsis: Higher-order Functional Reactive Programming Description: Reflex is a high-performance, deterministic, higher-order Functional Reactive Programming system License: BSD3