packages feed

comonad 1.1.1.1 → 1.1.1.2

raw patch · 2 files changed

+23/−7 lines, 2 filesdep ~basedep ~transformersPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, transformers

API changes (from Hackage documentation)

Files

Control/Comonad.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} ----------------------------------------------------------------------------- -- | -- Module      :  Control.Comonad@@ -99,7 +100,11 @@               wa = undefined  cokleisliTyCon :: TyCon+#ifdef OLD_TYPEABLE cokleisliTyCon = mkTyCon "Control.Comonad.Cokleisli"+#else+cokleisliTyCon = mkTyCon3 "comonad" "Control.Comonad" "Cokleisli"+#endif {-# NOINLINE cokleisliTyCon #-}  instance Comonad w => Category (Cokleisli w) where
comonad.cabal view
@@ -1,6 +1,6 @@ name:          comonad category:      Control, Comonads-version:       1.1.1.1+version:       1.1.1.2 license:       BSD3 cabal-version: >= 1.6 license-file:  LICENSE@@ -9,23 +9,34 @@ stability:     provisional homepage:      http://github.com/ekmett/comonad/ copyright:     Copyright (C) 2008-2011 Edward A. Kmett, Copyright (C) 2004-2008 Dave Menendez-synopsis:      Haskell 98 comonads-description:   Haskell 98 comonads+synopsis:      Haskell 98 compatible comonads+description:   Haskell 98 compatible comonads build-type:    Simple  source-repository head   type: git   location: git://github.com/ekmett/comonad.git +flag OldTypeable+  default: False+  manual: False+ library-  build-depends: -    base >= 4 && < 5,-    transformers >= 0.2.0 && < 0.3,+  if flag(OldTypeable)+    build-depends: base >= 4 && < 4.4+  else+    build-depends: base >= 4.4 && < 5++  build-depends:+    transformers >= 0.2.0 && < 0.4,     containers >= 0.3.0.0 && < 0.5,     semigroups >= 0.8 && < 0.9 +  if flag(OldTypeable)+    cpp-options: -DOLD_TYPEABLE+   exposed-modules:     Control.Comonad     Data.Functor.Extend -  ghc-options: -Wall +  ghc-options: -Wall