2025-02-02 14:06:08 by Masatake Daimon | Files touched by this commit (1173) |
Log message: Bump all Haskell packages after switching the default compiler. |
2025-01-30 05:20:41 by Masatake Daimon | Files touched by this commit (3) | ![]() |
Log message: math/hs-semigroupoids: update to semigroupoids-6.0.1 6.0.1 [2024.05.04] ------------------ * Fix a build error when compiling with `-f-contravariant`. |
2024-05-09 03:32:57 by Masatake Daimon | Files touched by this commit (1137) |
Log message: Recursive revbump after changing the default Haskell compiler |
2024-05-02 06:15:24 by Masatake Daimon | Files touched by this commit (1) |
Log message: math/hs-semigroupoids: Fix build with GHC 9.8 This breaks build with the currently default GHC 9.6. Please bear with me until I switch the default compiler. |
2023-11-02 07:37:49 by Masatake Daimon | Files touched by this commit (1141) |
Log message: Revbump all Haskell after updating lang/ghc96 |
2023-10-30 08:45:17 by Masatake Daimon | Files touched by this commit (4) |
Log message: math/hs-semigroupoids: Update to 6.0.0.1 The change log is too long to paste here. See https://hackage.haskell.org/package/semigroupoids-6.0.0.1/changelog |
2023-10-09 06:55:01 by Masatake Daimon | Files touched by this commit (988) |
Log message: Bump Haskell packages after updating lang/ghc94 |
2022-02-26 04:58:36 by Masatake Daimon | Files touched by this commit (872) |
Log message: Bump all Haskell packages after enabling "split sections" in mk/haskell.mk |
2022-02-12 09:51:00 by Masatake Daimon | Files touched by this commit (575) |
Log message: revbump after changing the default Haskell compiler |
2022-02-12 06:26:25 by Masatake Daimon | Files touched by this commit (4) |
Log message: Update to semigroupoids-5.3.7 5.3.7 [2022.01.09] * Relax the Bind constraints in the following instances to Functor: -instance (Bind f, Monad f) => Alt (MaybeT f) -instance (Bind f, Monad f) => Plus (MaybeT f) +instance (Functor f, Monad f) => Alt (MaybeT f) +instance (Functor f, Monad f) => Plus (MaybeT f) -instance (Bind f, Monad f, Semigroup e) => Alt (ExceptT e f) -instance (Bind f, Monad f, Semigroup e, Monoid e) => Plus (ExceptT e f) +instance (Functor f, Monad f, Semigroup e) => Alt (ExceptT e f) +instance (Functor f, Monad f, Semigroup e, Monoid e) => Plus (ExceptT e f) -- If building with transformers-0.5.* or older -instance (Bind f, Monad f) => Alt (ErrorT e f) -instance (Bind f, Monad f, Error e) => Plus (ErrorT e f +instance (Functor f, Monad f) => Alt (ErrorT e f) +instance (Functor f, Monad f, Error e) => Plus (ErrorT e f) 5.3.6 [2021.10.07] * Allow building with GHC 9.2. * Allow building with transformers-0.6.*. * Add Alt instance for Identity. * Add Conclude, Decide and Divise type classes and instances. * Add (<.*>), (<*.>), and traverseMaybe functions, which make it \ easier to defined Traversable1 instances for data types that have fields with a combination of Traversable and Traversable1 instances. * Add Semigroupoids.Do module with overloads for use with QualifiedDo. * Add Apply, Alt, Plus, Bind and BindTrans instances for the CPS versions of WriterT and RWST. * Add psum function to Data.Functor.Plus. * Add Categorical data type. |