diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-10-22 21:45:38 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-10-22 21:45:38 -0700 |
commit | 2059c05f0e9167aa1f408cc28d1883647705523b (patch) | |
tree | 785a14686e53575a0d83aa36b4098c5984bfe6f8 | |
parent | 06be050d82f0b81d6d666c0d85d89c40c26f3002 (diff) | |
download | pandoc-2059c05f0e9167aa1f408cc28d1883647705523b.tar.gz |
Require citeproc >= 0.1.0.3.
In the previous release we pointed to this with cabal.project
and stack.yaml, but jumped the gun because citeproc 0.1.0.3
had not yet been officially released.
-rw-r--r-- | cabal.project | 8 | ||||
-rw-r--r-- | pandoc.cabal | 2 | ||||
-rw-r--r-- | stack.yaml | 3 |
3 files changed, 6 insertions, 7 deletions
diff --git a/cabal.project b/cabal.project index e848f1b45..96e56de84 100644 --- a/cabal.project +++ b/cabal.project @@ -4,8 +4,8 @@ package pandoc flags: +embed_data_files -trypandoc ghc-options: -j +RTS -A64m -RTS -source-repository-package - type: git - location: https://github.com/jgm/citeproc - tag: 3230fb6fa1beff3e27389be20217a31d3c1207e9 +-- source-repository-package +-- type: git +-- location: https://github.com/jgm/citeproc +-- tag: 0.1.0.3 diff --git a/pandoc.cabal b/pandoc.cabal index b4eef9662..43c79953d 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -404,7 +404,7 @@ library blaze-markup >= 0.8 && < 0.9, bytestring >= 0.9 && < 0.12, case-insensitive >= 1.2 && < 1.3, - citeproc >= 0.1.0.2 && < 0.2, + citeproc >= 0.1.0.3 && < 0.2, commonmark >= 0.1.0.2 && < 0.2, commonmark-extensions >= 0.2 && < 0.3, commonmark-pandoc >= 0.2 && < 0.3, diff --git a/stack.yaml b/stack.yaml index 3d232763f..bacd2be16 100644 --- a/stack.yaml +++ b/stack.yaml @@ -22,8 +22,7 @@ extra-deps: - commonmark-0.1.0.2 - commonmark-extensions-0.2.0.1 - commonmark-pandoc-0.2.0.1 -- git: https://github.com/jgm/citeproc - commit: 3230fb6fa1beff3e27389be20217a31d3c1207e9 +- citeproc-0.1.0.3 ghc-options: "$locals": -fhide-source-paths -Wno-missing-home-modules |