doctemplates 0.11 → 0.11.0.1
raw patch · 3 files changed
+18/−6 lines, 3 filesdep ~doclayoutPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: doclayout
API changes (from Hackage documentation)
+ Text.DocTemplates: CookedText :: Int -> Attributed a -> Doc a
+ Text.DocTemplates: Linked :: Text -> Doc a -> Doc a
+ Text.DocTemplates: Styled :: StyleReq -> Doc a -> Doc a
- Text.DocTemplates: Block :: Int -> [a] -> Doc a
+ Text.DocTemplates: Block :: Int -> [Attributed a] -> Doc a
- Text.DocTemplates: data Doc a
+ Text.DocTemplates: data () => Doc a
Files
- README.md +2/−2
- changelog.md +12/−0
- doctemplates.cabal +4/−4
README.md view
@@ -1,4 +1,4 @@-#( doctemplates+# doctemplates [](https://github.com/jgm/doctemplates/actions)@@ -194,7 +194,7 @@ A for loop begins with `for(variable)` (enclosed in matched delimiters) and ends with `endfor` (enclosed in matched-delimiters.+delimiters). - If `variable` is an array, the material inside the loop will be evaluated repeatedly, with `variable` being set to each
changelog.md view
@@ -1,5 +1,17 @@ # doctemplates +# 0.11.0.1++ * Bump version bounds for doclayout.++ * Fix typos.++# 0.11++ * Remove HsYAML depenedency.++ * Remove upper bound for criterion.+ ## 0.10.0.2 * Use doclayout 0.4.
doctemplates.cabal view
@@ -1,5 +1,5 @@ name: doctemplates-version: 0.11+version: 0.11.0.1 synopsis: Pandoc-style document templates description: This is the text templating system used by pandoc. It supports variable interpolation, iteration,@@ -33,7 +33,7 @@ text-conversions, aeson, text,- doclayout >= 0.4 && < 0.5,+ doclayout >= 0.4 && < 0.6, containers, vector, filepath,@@ -51,7 +51,7 @@ main-is: test.hs build-depends: base, doctemplates,- doclayout >= 0.4 && < 0.5,+ doclayout >= 0.4 && < 0.6, containers, aeson, Glob,@@ -70,7 +70,7 @@ Main-Is: bench.hs Hs-Source-Dirs: bench Build-Depends: doctemplates,- doclayout >= 0.4 && < 0.5,+ doclayout >= 0.4 && < 0.6, base >= 4.8 && < 5, criterion >= 1.0, filepath,