packages feed

exitcode 0.3.0.0 → 0.3.0.1

raw patch · 3 files changed

+6/−2 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Control.Exitcode.Exitcode: Exitcode :: f (Either (e, NotZero) a) -> Exitcode e (f :: Type -> Type) a
- Control.Exitcode.Exitcode: newtype Exitcode e (f :: Type -> Type) a
+ Control.Exitcode.Exitcode: data Exitcode e (f :: Type -> Type) a

Files

changelog.md view
@@ -1,3 +1,7 @@+0.3.0.1++* Do not export the `Exitcode` constructor+ 0.3.0.0  * Replace `Int` exit code representation with `NotZero` from the `natural` package, making it impossible to construct a failure with exit code 0
exitcode.cabal view
@@ -1,6 +1,6 @@ cabal-version:          2.4 name:                   exitcode-version:                0.3.0.0+version:                0.3.0.1 synopsis:               Monad transformer for exit codes description:   Monad transformer for exit codes
src/Control/Exitcode/Exitcode.hs view
@@ -13,7 +13,7 @@  module Control.Exitcode.Exitcode   ( -- * Types-    Exitcode (..),+    Exitcode,     Exitcode',     ExitcodeBifunctor (..),     ExitcodeBifunctor',