summaryrefslogtreecommitdiff
path: root/changelog
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-01-18 20:52:34 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-01-18 20:52:34 -0800
commitbfc17917e95f797518aaf1684bff03879d406c1f (patch)
treea3e17b708bf00f2da2f47d802f53ef97a98a528e /changelog
parent30da1a5b70de8015d0bed81165e8754a40699ea9 (diff)
Updated changelog with Builder changes.
Diffstat (limited to 'changelog')
-rw-r--r--changelog11
1 files changed, 11 insertions, 0 deletions
diff --git a/changelog b/changelog
index a5895b89e..90937af86 100644
--- a/changelog
+++ b/changelog
@@ -201,6 +201,17 @@ pandoc (1.10)
Previously header identifers were autogenerated by the writers.
Now they are added in the readers (either automatically or explicitly).
+ * `Text.Pandoc.Builder`:
+
+ + `Inlines` and `Blocks` are now synonyms for `Many Inline` and
+ `Many Block`. `Many` is a newtype wrapper around `Seq`, with
+ custom Monoid instances for `Many Inline` and `Many Block. This
+ allows `Many` to be made an instance of `Foldable` and `Traversable`.
+ + The old `Listable` class has been removed.
+ + The module now exports `isNull`, `toList`, `fromList`.
+ + The old `Read` and `Show` instances have been removed; derived
+ instances are now used.
+
* The readers now take a `ReaderOptions` rather than a `ParserState`
as a parameter. Indeed, not all parsers use the `ParserState` type;
some have a custom state. The motivation for this change was to separate