show 0.3.3 → 0.3.4
raw patch · 1 files changed
+12/−2 lines, 1 filesdep +sybdep ~basenew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependencies added: syb
Dependency ranges changed: base
API changes (from Hackage documentation)
- ShowIO: instance (Typeable a) => Show (IO a)
+ ShowIO: instance Typeable a => Show (IO a)
- ShowQ: myquickcheck :: (Testable a) => a -> String
+ ShowQ: myquickcheck :: Testable a => a -> String
- ShowQ: myquickcheck' :: (Testable a) => a -> IO String
+ ShowQ: myquickcheck' :: Testable a => a -> IO String
- ShowQ: mysmallcheck :: (Testable a) => a -> ()
+ ShowQ: mysmallcheck :: Testable a => a -> ()
- ShowQ: mysmallcheck' :: (Testable a) => a -> IO ()
+ ShowQ: mysmallcheck' :: Testable a => a -> IO ()
- SimpleReflect: f :: (FromExpr a) => a
+ SimpleReflect: f :: FromExpr a => a
- SimpleReflect: fun :: (FromExpr a) => String -> a
+ SimpleReflect: fun :: FromExpr a => String -> a
- SimpleReflect: g :: (FromExpr a) => a
+ SimpleReflect: g :: FromExpr a => a
- SimpleReflect: h :: (FromExpr a) => a
+ SimpleReflect: h :: FromExpr a => a
Files
- show.cabal +12/−2
show.cabal view
@@ -1,5 +1,5 @@ name: show-version: 0.3.3+version: 0.3.4 license: GPL license-file: LICENSE@@ -22,10 +22,20 @@ Cabal-Version: >= 1.2 tested-with: GHC==6.8.2 +Flag Base4orNewer+ Description: Adjusts the build dependencies depending on which version of Base is available.+ -- Cabal checks if the configuration is possible, first+ -- with this flag set to True and if not it tries with False+ library exposed-modules: ShowQ, ShowFun, ShowIO, SimpleReflect - build-depends: base >= 3 && < 5, random, QuickCheck<2, smallcheck>=0.4+ build-depends: random, QuickCheck<2, smallcheck>=0.4++ if flag(Base4orNewer)+ build-depends: base >= 4 && < 5, syb+ else+ build-depends: base >= 3 && < 4 ghc-options: -Wall ghc-prof-options: -prof -auto-all