diff options
author | Mikhail Glushenkov <mikhail.glushenkov@gmail.com> | 2017-06-09 16:12:24 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2017-06-09 16:12:24 +0200 |
commit | 5d7a791b2eac3af559cf41b5206cf492608da7aa (patch) | |
tree | 52d464d1e35cd629f43a8921d0f8647b6e7d1bf8 | |
parent | 1d4d4b941abb0c13db1e2ea207dad27d83634723 (diff) | |
download | hakyll-5d7a791b2eac3af559cf41b5206cf492608da7aa.tar.gz |
Tighten the dependency on pandoc-citeproc.
0.10.5 added a new type CLabel to Text.CSL.Reference, which broke the orphan instance in Web.Pandoc.Binary.
Note also that according to PVP a client that defines an orphan instance must depend on the minor version of the package defining the type.
-rw-r--r-- | hakyll.cabal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hakyll.cabal b/hakyll.cabal index bf4f35e..1feb354 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -169,7 +169,7 @@ Library network >= 2.6 && < 2.7, network-uri >= 2.6 && < 2.7, pandoc >= 1.14 && < 1.20, - pandoc-citeproc >= 0.4 && < 0.11, + pandoc-citeproc >= 0.4 && < 0.10.5, parsec >= 3.0 && < 3.2, process >= 1.0 && < 1.6, random >= 1.0 && < 1.2, |