packages feed

test-framework-th-prime 0.0.5 → 0.0.6

raw patch · 3 files changed

+11/−5 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

LICENSE view
@@ -1,6 +1,3 @@-Copyright (c) 2010, Oscar Finnsson-All rights reserved.- Copyright (c) 2012, IIJ Innovation Institute Inc. All rights reserved. 
Test/Framework/TH/Prime/Parser.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} module Test.Framework.TH.Prime.Parser (     unitPropTests   , symbol, string@@ -66,11 +67,19 @@         ParseFailed _ _ ->           []       where+#if MIN_VERSION_haskell_src_exts(1, 14, 0)+        toExtention = parseExtension . toStr+#else         toExtention = read . toStr+#endif         toStr (Ident str) = str         toStr (Symbol str) = str     opt raw = defaultParseMode {+#if MIN_VERSION_haskell_src_exts(1, 14, 0)+        extensions = nub $ EnableExtension TemplateHaskell : exts raw+#else         extensions = nub $ TemplateHaskell : exts raw+#endif       -- to prevent "Ambiguous infix expression"       , fixities = Nothing       }
test-framework-th-prime.cabal view
@@ -1,5 +1,5 @@ Name:                   test-framework-th-prime-Version:                0.0.5+Version:                0.0.6 Author:                 Kazu Yamamoto <kazu@iij.ad.jp> Maintainer:             Kazu Yamamoto <kazu@iij.ad.jp> License:                BSD3@@ -26,4 +26,4 @@  Source-Repository head   Type:                 git-  Location:             git clone git://github.com/kazu-yamamoto/test-framework-th-prime.git+  Location:             git://github.com/kazu-yamamoto/test-framework-th-prime.git