pandoc-types 1.17.5.3 → 1.17.5.4
raw patch · 3 files changed
+8/−2 lines, 3 filesdep ~QuickCheckPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck
API changes (from Hackage documentation)
Files
- Text/Pandoc/Definition.hs +1/−0
- changelog +5/−0
- pandoc-types.cabal +2/−2
Text/Pandoc/Definition.hs view
@@ -86,6 +86,7 @@ #else import Data.Monoid (Monoid (mappend, mempty)) import Control.Applicative ((<$>), (<*>))+import Control.DeepSeq (NFData(..)) import Control.DeepSeq.Generics #endif import Paths_pandoc_types (version)
changelog view
@@ -1,3 +1,8 @@+[1.17.5.4]++ * Put NFData in scope for ghc < 7.10.+ * Reduce deepseq lower bound for ghc < 7.10.+ [1.17.5.3] * For ghc < 7.10, constrain deepseq-generics to >= 0.2, which no
pandoc-types.cabal view
@@ -1,5 +1,5 @@ Name: pandoc-types-Version: 1.17.5.3+Version: 1.17.5.4 Synopsis: Types for representing a structured document Description: @Text.Pandoc.Definition@ defines the 'Pandoc' data structure, which is used by pandoc to represent@@ -58,7 +58,7 @@ Build-depends: semigroups == 0.18.* if impl(ghc < 7.10) Build-depends: deepseq-generics >= 0.2 && < 0.3,- deepseq >= 1.4.1 && < 1.5+ deepseq >= 1.3 && < 1.5 else Build-depends: deepseq >= 1.4.1 && < 1.5 ghc-options: -Wall