reflex 0.8.1.0 → 0.8.1.1
raw patch · 3 files changed
+25/−10 lines, 3 filesdep ~hlint
Dependency ranges changed: hlint
Files
- ChangeLog.md +17/−2
- README.md +3/−3
- reflex.cabal +5/−5
ChangeLog.md view
@@ -1,16 +1,31 @@ # Revision history for reflex +## 0.8.1.1++* Allow newer hlint for older GHCs, and add upper bound for newer GHCs+ ## 0.8.1.0 * Add support for GHC 8.10-* Drop support for GHC 8.2.* and earlier+* Drop support for GHC < 8.4 ## 0.8.0.0 * Replace 0.7.2.0 with 0.8.0.0 to reflect the `MonadHold` interface change. Deprecates 0.7.2.0. -## 0.7.2.0+## 0.7.2.0 -- *Deprecated*+ * ([#416](https://github.com/reflex-frp/reflex/pull/416)) Add `now :: m (Event t ())` to `MonadHold`.+* Extend some dependency version bounds+* Fix HLint 3 test++## 0.7.1.1++*Backport release*.+Changes do not carry forward to 0.7.2.0.++* Add support for GHC 8.10+* Drop support for GHC < 8.4 * Extend some dependency version bounds * Fix HLint 3 test
README.md view
@@ -1,4 +1,4 @@-## [Reflex](https://reflex-frp.org/)+# [Reflex](https://reflex-frp.org/) [](https://haskell.org) [](https://hackage.haskell.org/package/reflex) [](https://matrix.hackage.haskell.org/#/package/reflex) [](https://github.com/reflex-frp/reflex/blob/master/LICENSE) @@ -8,7 +8,7 @@ **Visit https://reflex-frp.org for more information, tutorials, documentation and [examples](https://examples.reflex-frp.org/).** -### Resources+## Resources * [Official Website](https://reflex-frp.org) * [Quick Reference](Quickref.md)@@ -18,6 +18,6 @@ * [/r/reflexfrp](https://www.reddit.com/r/reflexfrp) * [irc.freenode.net #reflex-frp](http://webchat.freenode.net?channels=%23reflex-frp&uio=d4) -### Hacking+## Hacking From the root of a [Reflex Platform](https://github.com/reflex-frp/reflex-platform) checkout, run `./scripts/hack-on haskell-overlays/reflex-packages/dep/reflex`. This will check out the reflex source code into the `haskell-overlays/reflex-packages/dep/reflex` directory. You can then point that checkout at your fork, make changes, etc. Use the `./try-reflex` or `./scripts/work-on` scripts to start a shell in which you can test your changes.
reflex.cabal view
@@ -1,5 +1,5 @@ Name: reflex-Version: 0.8.1.0+Version: 0.8.1.1 Synopsis: Higher-order Functional Reactive Programming Description: Interactive programs without callbacks or side-effects.@@ -29,7 +29,7 @@ tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.1 || ==8.10.2,- GHCJS ==8.4+ GHCJS ==8.6 flag use-reflex-optimizer description: Use the GHC plugin Reflex.Optimizer on some of the modules in the package. This is still experimental.@@ -71,7 +71,7 @@ hs-source-dirs: src build-depends: MemoTrie == 0.6.*,- base >= 4.9 && < 4.15,+ base >= 4.11 && < 4.15, bifunctors >= 5.2 && < 5.6, comonad >= 5.0.4 && < 5.1, constraints-extras >= 0.3 && < 0.4,@@ -258,9 +258,9 @@ , filepath , filemanip if impl(ghc >= 8.8)- build-depends: hlint >= 3+ build-depends: hlint >= 3 && < 4 else- build-depends: hlint (< 2.1 || >= 2.2.2) && < 3+ build-depends: hlint (< 2.1 || >= 2.2.2) && < 4 if impl(ghcjs) buildable: False