packages feed

th-expand-syns 0.3.0.5 → 0.3.0.6

raw patch · 4 files changed

+7/−7 lines, 4 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

Language/Haskell/TH/ExpandSyns.hs view
@@ -58,9 +58,10 @@ #endif  -+#if __GLASGOW_HASKELL__ < 709 (<$>) :: (Functor f) => (a -> b) -> f a -> f b (<$>) = fmap+#endif (<*>) :: (Monad m) => m (a -> b) -> m a -> m b (<*>) = ap 
changelog.markdown view
@@ -1,3 +1,7 @@+## 0.3.0.6++* Fixed build with current (commit 029a296a770addbd096bbfd6de0936327ee620d4) GHC 7.10 (Thanks to David Fox)+ ## 0.3.0.5  * Fixed build with GHC 7.10.1-rc2 / template-haskell-2.10 (Thanks to Gabor Greif)
testing/Main.hs view
@@ -13,11 +13,6 @@   main = do-    $(do-        i <- reify ''ForAll-        runIO . putStrLn . show $ i-        [| return () |])-     putStrLn "Basic test..."     $(mkTest  [t| forall a. Show a => a -> ForAll [] -> (Int,ApplyToInteger []) |]  
th-expand-syns.cabal view
@@ -1,5 +1,5 @@ name:                th-expand-syns-version:             0.3.0.5+version:             0.3.0.6 synopsis:            Expands type synonyms in Template Haskell ASTs description:         Expands type synonyms in Template Haskell ASTs category:            Template Haskell