diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-12-31 14:34:02 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-12-31 14:34:02 -0800 |
commit | 2e43980a67234abb0fd4d688f738206bd7cd0607 (patch) | |
tree | 1477a4bf3eda801a9d062dee72d214f27687f711 | |
parent | 1a24841450a24e50563b1a9d4c74afa1d3667a79 (diff) | |
download | pandoc-2e43980a67234abb0fd4d688f738206bd7cd0607.tar.gz |
Fixed bytestring upperbounds (0.11, not 1.0).
-rw-r--r-- | pandoc.cabal | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index d3f17a2f0..c7f6aa555 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -205,7 +205,7 @@ Library filepath >= 1.1 && < 1.4, process >= 1 && < 1.2, directory >= 1 && < 1.3, - bytestring >= 0.9 && < 1.0, + bytestring >= 0.9 && < 0.11, text >= 0.11 && < 0.12, zip-archive >= 0.1.1.7 && < 0.2, old-locale >= 1 && < 1.1, @@ -309,7 +309,7 @@ Executable pandoc filepath >= 1.1 && < 1.4, network >= 2 && < 2.5, text >= 0.11 && < 0.12, - bytestring >= 0.9 && < 1.0, + bytestring >= 0.9 && < 0.11, extensible-exceptions >= 0.1 && < 0.2, highlighting-kate >= 0.5.1 && < 0.6, HTTP >= 4000.0.5 && < 4000.3, @@ -356,7 +356,7 @@ Test-Suite test-pandoc syb >= 0.1 && < 0.4, pandoc, pandoc-types >= 1.10 && < 1.11, - bytestring >= 0.9 && < 1.0, + bytestring >= 0.9 && < 0.11, text >= 0.11 && < 0.12, directory >= 1 && < 1.3, filepath >= 1.1 && < 1.4, |