pandoc-types 1.17.0.2 → 1.17.0.3
raw patch · 5 files changed
+11/−2 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Text/Pandoc/Definition.hs +1/−0
- Text/Pandoc/Generic.hs +1/−1
- Text/Pandoc/Walk.hs +4/−0
- changelog +4/−0
- pandoc-types.cabal +1/−1
Text/Pandoc/Definition.hs view
@@ -84,6 +84,7 @@ #if MIN_VERSION_base(4,8,0) import Control.DeepSeq #else+import Data.Monoid import Control.Applicative ((<$>), (<*>)) import Control.DeepSeq.Generics #endif
Text/Pandoc/Generic.hs view
@@ -122,7 +122,7 @@ import Data.Generics #if MIN_VERSION_base(4,8,0) #else-import Data.Monoid (Monoid, mappend, mempty)+import Data.Monoid #endif -- | Applies a transformation on @a@s to matching elements in a @b@,
Text/Pandoc/Walk.hs view
@@ -93,6 +93,10 @@ import Data.Traversable (Traversable) import qualified Data.Foldable as F import Data.Foldable (Foldable)+#if MIN_VERSION_base(4,8,0)+#else+import Data.Monoid+#endif class Walkable a b where -- | @walk f x@ walks the structure @x@ (bottom up) and replaces every
changelog view
@@ -1,3 +1,7 @@+[1.17.0.3]++ * More ghc 7.8 compatibility imports.+ [1.17.0.2] * Added a necessary import from Data.Monoid (for ghc 7.8).
pandoc-types.cabal view
@@ -1,5 +1,5 @@ Name: pandoc-types-Version: 1.17.0.2+Version: 1.17.0.3 Synopsis: Types for representing a structured document Description: @Text.Pandoc.Definition@ defines the 'Pandoc' data structure, which is used by pandoc to represent