stache 0.1.1 → 0.1.2
raw patch · 3 files changed
+10/−4 lines, 3 filesdep ~stache
Dependency ranges changed: stache
Files
- CHANGELOG.md +4/−0
- bench/Main.hs +2/−0
- stache.cabal +4/−4
CHANGELOG.md view
@@ -1,3 +1,7 @@+## Stache 0.1.2++* Fixed compilation of benchmarks with Megaparsec 5.0.1 and later.+ ## Stache 0.1.1 * Added benchmarks.
bench/Main.hs view
@@ -94,8 +94,10 @@ ---------------------------------------------------------------------------- -- Orphan instances +#if !MIN_VERSION_megaparsec(5,0,1) instance NFData Pos where rnf = rnf . unPos+#endif instance NFData Node
stache.cabal view
@@ -31,7 +31,7 @@ -- POSSIBILITY OF SUCH DAMAGE. name: stache-version: 0.1.1+version: 0.1.2 cabal-version: >= 1.10 license: BSD3 license-file: LICENSE.md@@ -111,7 +111,7 @@ , hspec >= 2.0 && < 3.0 , hspec-megaparsec >= 0.2 && < 0.3 , megaparsec >= 5.0 && < 6.0- , stache >= 0.1.1+ , stache >= 0.1.2 , text >= 1.2 && < 1.3 other-modules: Text.Mustache.Compile.THSpec , Text.Mustache.ParserSpec@@ -136,7 +136,7 @@ , file-embed , hspec >= 2.0 && < 3.0 , megaparsec >= 5.0 && < 6.0- , stache >= 0.1.1+ , stache >= 0.1.2 , text >= 1.2 && < 1.3 , yaml >= 0.8 && < 0.9 if flag(dev)@@ -154,7 +154,7 @@ , criterion >= 0.6.2.1 && < 1.2 , deepseq >= 1.4 && < 1.5 , megaparsec >= 5.0 && < 6.0- , stache >= 0.1.1+ , stache >= 0.1.2 , text >= 1.2 && < 1.3 if flag(dev) ghc-options: -Wall -Werror