buildbox 2.2.1.1 → 2.2.1.2
raw patch · 1 files changed
+4/−4 lines, 1 filesdep ~basedep ~containersdep ~stmPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, containers, stm
API changes (from Hackage documentation)
- BuildBox: catch :: MonadCatch m => forall e a. Exception e => m a -> (e -> m a) -> m a
+ BuildBox: catch :: (MonadCatch m, Exception e) => m a -> e -> m a -> m a
- BuildBox.Build: catch :: MonadCatch m => forall e a. Exception e => m a -> (e -> m a) -> m a
+ BuildBox.Build: catch :: (MonadCatch m, Exception e) => m a -> e -> m a -> m a
- BuildBox.Build.Benchmark: Benchmark :: String -> Build () -> Build a -> (a -> Build result) -> Benchmark result
+ BuildBox.Build.Benchmark: Benchmark :: String -> Build () -> Build a -> a -> Build result -> Benchmark result
- BuildBox.Pretty: data Text :: *
+ BuildBox.Pretty: data Text
Files
- buildbox.cabal +4/−4
buildbox.cabal view
@@ -1,5 +1,5 @@ Name: buildbox-Version: 2.2.1.1+Version: 2.2.1.2 License: BSD3 License-file: LICENSE Author: Ben Lippmeier@@ -21,8 +21,8 @@ Library Build-Depends:- base >= 4.4 && < 4.12,- containers >= 0.4 && < 0.6,+ base >= 4.4 && < 4.13,+ containers >= 0.4 && < 0.7, bytestring >= 0.9 && < 0.11, exceptions >= 0.8 && < 0.11, old-locale >= 1.0 && < 1.1,@@ -32,7 +32,7 @@ time >= 1.2 && < 1.9, text >= 1.2 && < 1.3, mtl >= 2.2 && < 2.3,- stm >= 2.4 && < 2.5+ stm >= 2.4 && < 2.6 ghc-options: -Wall