From 81bc5cb7e8915e95566f37ded79226e176bba31e75661fd1a6b892b4cecca6c6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 29 Dec 2019 02:02:38 +0000 Subject: [PATCH] osc copypac from project:devel:languages:haskell:ghc-8.6.x package:ghc-free revision:8, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-free?expand=0&rev=41 --- ghc-free.changes | 118 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 115 insertions(+), 3 deletions(-) diff --git a/ghc-free.changes b/ghc-free.changes index c169bca..b79c187 100644 --- a/ghc-free.changes +++ b/ghc-free.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Wed Nov 27 03:00:33 UTC 2019 - psimons@suse.com +Wed Nov 27 03:01:05 UTC 2019 - psimons@suse.com - Update free to version 5.1.3. 5.1.3 [2019.11.26] @@ -9,7 +9,119 @@ Wed Nov 27 03:00:33 UTC 2019 - psimons@suse.com `CofreeF`. ------------------------------------------------------------------- -Wed Aug 28 17:31:08 UTC 2019 - psimons@suse.com +Fri Nov 8 16:13:46 UTC 2019 - Peter Simons -- Add free at version 5.1.2. +- Drop obsolete group attributes. +------------------------------------------------------------------- +Wed Aug 28 02:02:43 UTC 2019 - psimons@suse.com + +- Update free to version 5.1.2. + 5.1.2 [2019.08.27] + ------------------ + * Implement more performant versions of `some` and `many` in the `Alternative` + instance for the final `Alt` encoding. + +------------------------------------------------------------------- +Fri May 3 02:02:58 UTC 2019 - psimons@suse.com + +- Update free to version 5.1.1. + 5.1.1 [2019.05.02] + ------------------ + * Allow building with `base-4.13` (GHC 8.8). + +------------------------------------------------------------------- +Sat Oct 20 11:31:32 UTC 2018 - Peter Simons + +- Use https URL to refer to bugs.opensuse.org. + +------------------------------------------------------------------- +Wed Jul 18 14:26:25 UTC 2018 - psimons@suse.com + +- Cosmetic: replace tabs with blanks, strip trailing white space, + and update copyright headers with spec-cleaner. + +------------------------------------------------------------------- +Fri Jul 13 14:32:09 UTC 2018 - psimons@suse.com + +- Update free to version 5.1. + 5.1 [2018.07.03] + ---------------- + * Generalize the type of `_Free`. + * Allow building with `containers-0.6`. + * Avoid incurring some dependencies when using recent GHCs. + + 5.0.2 [2018.04.25] + ------------------ + * Add `Generic` and `Generic1` instances where possible. + +------------------------------------------------------------------- +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 + +- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. + +------------------------------------------------------------------- +Sun Jul 10 17:13:32 UTC 2016 - psimons@suse.com + +- Update to version 4.12.4 revision 0 with cabal2obs. + +------------------------------------------------------------------- +Mon Jan 18 10:33:25 UTC 2016 - mimi.vx@gmail.com + +- update to 4.12.4 +* Add instances for ExceptT: like ErrorT, but without an Error constraint. +* Support containers +* Support transformers 0.5 +* Removed a number of spurious class constraints. +* Support comonad 5 + +------------------------------------------------------------------- +Thu Aug 6 19:27:49 UTC 2015 - mimi.vx@gmail.com + +- update to 4.12.1 +* Add instances of MonadCatch and MonadThrow from exceptions to FT, FreeT and IterT. +* semigroupoids 5, profunctors 5, and bifunctors 5 support. + +------------------------------------------------------------------- +Sun Apr 26 17:48:04 UTC 2015 - mimi.vx@gmail.com + +- initial commit