aboutsummaryrefslogtreecommitdiff
path: root/changelog.md
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2021-10-23 16:07:02 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2021-10-23 16:07:02 +0200
commitc8fb1680276ad9c93d9cf35bcdf0e76f16e3d10e (patch)
tree4dcd2dba20649b2156ffb9cb48182eb56ae897af /changelog.md
parent82d9aa7ca47a58bd771937b33b7dc3dc5938ed89 (diff)
downloadpandoc-c8fb1680276ad9c93d9cf35bcdf0e76f16e3d10e.tar.gz
changelog.md: update some Lua-related entries
Diffstat (limited to 'changelog.md')
-rw-r--r--changelog.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index bf8f2a6e4..c10043c39 100644
--- a/changelog.md
+++ b/changelog.md
@@ -352,7 +352,11 @@
to any instance of PandocMonad and MonadIO [API change].
The type of `runLua` is now
- (PandocMonad m, MonadIO m) => Lua a -> m (Either PandocError a)
+ (PandocMonad m, MonadIO m) =>
+ LuaE PandocError a -> m (Either PandocError a)
+
+ The change from `Lua` to `LuaE PandocError` is due to the switch to
+ hslua-2.0; see next item.
* Lua modules (Albert Krewinkel):
@@ -380,7 +384,6 @@
associative attribute list that is used as the third component of
`Attr` values. Values of this type can often be passed to constructors
instead of `Attr` values.
- + `AttributeList` values can no longer be indexed numerically.
* Text.Pandoc.PDF: Previously we had to run `runIOorExplode` inside
`withTempDir`. Now that PandocIO is an instance of MonadMask, this is