diff options
author | Alexander Batischev <eual.jp@gmail.com> | 2021-03-15 23:17:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 23:17:55 +0300 |
commit | 0dc6127d81ff688e27c36ce469230320eee60246 (patch) | |
tree | a5c2a42c76903f5b0e52dd3d079557322fc07468 | |
parent | f3c3acf27cba275911d62e3c1ff902074884e970 (diff) | |
download | hakyll-0dc6127d81ff688e27c36ce469230320eee60246.tar.gz |
Allow pandoc 2.12 (#839)
This passed on my machine:
cabal test all -j --enable-tests --constrain 'pandoc == 2.12'
-rw-r--r-- | hakyll.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hakyll.cabal b/hakyll.cabal index b6b44d0..0ef3b04 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -237,7 +237,7 @@ Library Other-Modules: Hakyll.Web.Pandoc.Binary Build-Depends: - pandoc >= 2.11 && < 2.12 + pandoc >= 2.11 && < 2.13 Cpp-options: -DUSE_PANDOC @@ -333,4 +333,4 @@ Executable hakyll-website base >= 4 && < 5, directory >= 1.0 && < 1.4, filepath >= 1.0 && < 1.5, - pandoc >= 2.11 && < 2.12 + pandoc >= 2.11 && < 2.13 |