packages feed

pro-abstract 0.1.1.0 → 0.1.2.0

raw patch · 4 files changed

+8/−1 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.txt view
@@ -1,3 +1,6 @@ v0.1.0.0 - Initial  v0.1.1.0 - Added the BlockTagContent type++v0.1.2.0 - Add instances (Eq, Show, Generic, Hashable, NFData)+           to classes (BlockTag, BlockTagContent)
library/pro-abstract/ProAbstract/Structure/BlockTag.hs view
@@ -20,6 +20,8 @@ data BlockTag ann =     BlockTagFork  (Tagged (Blocks ann))     -- ^ 'ProAbstract.fork'   | BlockTagPlain (Tagged (PlainBlock ann)) -- ^ 'ProAbstract.plain'+  deriving stock (Eq, Show, Generic)+  deriving anyclass (Hashable, NFData)  type instance Content (BlockTag ann) = BlockTagContent ann 
library/pro-abstract/ProAbstract/Structure/BlockTagContent.hs view
@@ -18,6 +18,8 @@ data BlockTagContent ann =     BlockTagContent_Fork  (Blocks ann)     -- ^ 'ProAbstract.fork'   | BlockTagContent_Plain (PlainBlock ann) -- ^ 'ProAbstract.plain'+  deriving stock (Eq, Show, Generic)+  deriving anyclass (Hashable, NFData)  type instance Annotation (BlockTagContent ann) = ann 
pro-abstract.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0  name: pro-abstract-version: 0.1.1.0+version: 0.1.2.0  category: Language synopsis: Abstract syntax for writing documents