envy 1.5.0.0 → 1.5.1.0
raw patch · 3 files changed
+6/−8 lines, 3 filesdep ~containersdep ~timePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: containers, time
API changes (from Hackage documentation)
- System.Envy: instance System.Envy.Var a => System.Envy.Var (GHC.Base.Maybe a)
+ System.Envy: instance System.Envy.Var a => System.Envy.Var (GHC.Maybe.Maybe a)
Files
- README.md +3/−3
- envy.cabal +3/−4
- src/System/Envy.hs +0/−1
README.md view
@@ -1,10 +1,10 @@ envy ===================--+[](https://hackage.haskell.org/package/envy)+[](https://packdeps.haskellers.com/feed?needle=envy)  -+[](https://travis-ci.org/dmjio/envy) Let's face it, dealing with environment variables in Haskell isn't that satisfying.
envy.cabal view
@@ -1,5 +1,5 @@ name: envy-version: 1.5.0.0+version: 1.5.1.0 synopsis: An environmentally friendly way to deal with environment variables license: BSD3 license-file: LICENSE@@ -22,10 +22,10 @@ hs-source-dirs: src build-depends: base >= 4.7 && < 5 , bytestring == 0.10.*- , containers == 0.5.*+ , containers >= 0.5 && < 0.7 , mtl == 2.2.* , text == 1.2.*- , time >= 1.5 && < 1.9+ , time >= 1.5 && < 2.0 , transformers >= 0.4 && < 0.6 default-language: Haskell2010 @@ -45,7 +45,6 @@ , time , transformers default-language: Haskell2010- source-repository head type: git
src/System/Envy.hs view
@@ -68,7 +68,6 @@ , Option (..) , runEnv , gFromEnvCustom- , runParser ) where ------------------------------------------------------------------------------ import Control.Applicative