envy 2.1.1.0 → 2.1.2.0
raw patch · 2 files changed
+6/−5 lines, 2 filesdep ~mtldep ~transformersPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: mtl, transformers
API changes (from Hackage documentation)
- System.Envy: instance System.Envy.Var GHC.Integer.Type.Integer
+ System.Envy: instance System.Envy.Var GHC.Num.Integer.Integer
Files
- envy.cabal +3/−3
- src/System/Envy.hs +3/−2
envy.cabal view
@@ -1,5 +1,5 @@ name: envy-version: 2.1.1.0+version: 2.1.2.0 synopsis: An environmentally friendly way to deal with environment variables license: BSD3 license-file: LICENSE@@ -23,10 +23,10 @@ build-depends: base >= 4.11 && < 5 , bytestring == 0.10.* || == 0.11.* , containers >= 0.5 && < 0.7- , mtl == 2.2.*+ , mtl == 2.2.* || == 2.3.* , text == 1.2.* || == 2.0.* , time >= 1.5 && < 2.0- , transformers >= 0.4 && < 0.6+ , transformers >= 0.4 && < 0.7 default-language: Haskell2010 test-suite spec
src/System/Envy.hs view
@@ -80,8 +80,9 @@ ) where ------------------------------------------------------------------------------ import Control.Applicative-import Control.Monad.Except-import Control.Monad.Fail+import Control.Monad (MonadPlus)+import Control.Monad.Except (ExceptT, MonadError, runExceptT, throwError)+import Control.Monad.IO.Class (MonadIO, liftIO) import Control.Exception import Data.Functor.Identity import Data.Maybe