osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-free revision:3, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-free?expand=0&rev=24
This commit is contained in:
Peter Simons 2018-05-15 18:23:49 +00:00 committed by Git OBS Bridge
parent 1974dd06a1
commit 2e98e86e42

View File

@ -1,3 +1,42 @@
-------------------------------------------------------------------
Mon May 14 17:02:11 UTC 2018 - psimons@suse.com
- Update free to version 5.0.2.
* Add a `Semigroup` instance for `IterT`.
* Add `MonadFail` instances for `IterT` and `FreeT`.
* Add a `Comonad` instance for the free `Applicative`, `Ap`.
* Add `Control.Monad.Free.Ap` and `Control.Monad.Trans.Free.Ap` modules, based
on the "Applicative Effects in Free Monads" series of articles by Will
Fancher.
* Derive `Data` instances for `Free` and `Cofree`.
* `Control.Monad.Free.TH` now properly supports `template-haskell-2.11.0.0`. In
particular, it now supports `GadtC` and `RecGadtC`, which are new
`template-haskell` forms for representing GADTs.
* Add `telescoped_`, `shoots`, and `leaves` to `Control.Comonad.Cofree`
* Add the `Control.Applicative.Free.Fast` module, based on Dave Menendez's
article "Free Applicative Functors in Haskell"
* Add `foldFreeT` to `Control.Monad.Trans.Free`
* Improve the `foldMap` and `cutoff` functions for
`Control.Monad.Free.Church.F`, and add a `Traversable`
* Add a `MonadBase` instance for `FreeT`
* Add a performance test comparing Free and Church interpreters
* The use of `prelude-extras` has been removed. `free` now uses the
`Data.Functor.Classes` module to give `free`'s datatypes instances of `Eq1`,
`Ord1`, `Read1`, and `Show1`. Their `Eq`, `Ord`, `Read`, and `Show` instances
have also been modified to incorporate these classes. For example, what
previously existed as:
```haskell
instance (Eq (f (Free f a)), Eq a) => Eq (Free f a) where
```
has now been changed to:
```haskell
instance (Eq1 f, Eq a) => Eq (Free f a) where
```
* Remove redundant `Functor` constraints from `Control.Alternative.Free`
-------------------------------------------------------------------
Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com