packages feed

ad 1.3.0.1 → 1.3.1

raw patch · 4 files changed

+12/−2 lines, 4 filesdep ~freePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: free

API changes (from Hackage documentation)

Files

Numeric/AD/Internal/Sparse.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE BangPatterns, TemplateHaskell, TypeFamilies, TypeOperators, FlexibleContexts, UndecidableInstances, DeriveDataTypeable, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances #-}+{-# OPTIONS_GHC -fno-warn-name-shadowing #-} module Numeric.AD.Internal.Sparse      ( Index(..)     , emptyIndex
Numeric/AD/Internal/Tensors.hs view
@@ -22,7 +22,11 @@ import Data.Foldable import Data.Traversable import Data.Monoid+#if __GLASGOW_HASKELL__ < 704 import Data.Typeable (Typeable1(..), TyCon, mkTyCon, mkTyConApp)+#else+import Data.Typeable (Typeable1(..), TyCon, mkTyCon3, mkTyConApp)+#endif import Control.Comonad.Cofree  infixl 3 :-@@ -73,5 +77,9 @@               asArgsType = const  tensorsTyCon :: TyCon+#if __GLASGOW_HASKELL__ < 704 tensorsTyCon = mkTyCon "Numeric.AD.Internal.Tensors.Tensors"+#else+tensorsTyCon = mkTyCon3 "ad" "Numeric.AD.Internal.Tensors" "Tensors"+#endif {-# NOINLINE tensorsTyCon #-}
Numeric/AD/Internal/Tower.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE Rank2Types, TypeFamilies, FlexibleContexts, UndecidableInstances, TemplateHaskell, DeriveDataTypeable #-}+{-# OPTIONS_GHC -fno-warn-name-shadowing #-} -- {-# OPTIONS_HADDOCK hide, prune #-} ----------------------------------------------------------------------------- -- |
ad.cabal view
@@ -1,5 +1,5 @@ name:         ad-version:      1.3.0.1+version:      1.3.1 license:      BSD3 license-File: LICENSE copyright:    (c) Edward Kmett 2010-2011,@@ -136,7 +136,7 @@     containers       >= 0.2     && < 0.5,     array            >= 0.2     && < 0.5,     comonad          >= 1.1.1.1 && < 1.2,-    free             >= 2.0     && < 2.1,+    free             >= 2.0     && < 2.2,     template-haskell >= 2.6     && < 2.8    exposed-modules: