salak-yaml 0.3.5.1 → 0.3.5.3
raw patch · 4 files changed
+29/−6 lines, 4 filesdep ~QuickCheckdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +7/−0
- README.md +14/−0
- salak-yaml.cabal +7/−5
- src/Salak/Yaml.hs +1/−1
+ CHANGELOG.md view
@@ -0,0 +1,7 @@+0.3.5.3 [2019.08.30]+-------------------+* Support GHC 8.8++0.3.5 [2019.08.21]+-------------------+* Stable version
README.md view
@@ -1,1 +1,15 @@ # salak-yaml++[](https://hackage.haskell.org/package/salak-yaml)+[](https://travis-ci.org/leptonyu/salak)+[](http://stackage.org/lts/package/salak-yaml)+[](http://stackage.org/nightly/package/salak-yaml)+[](https://github.com/leptonyu/salak/blob/master/salak-yaml/LICENSE)+++Yaml support for [salak](https://hackage.haskell.org/package/salak).++### Packages++- [](https://hackage.haskell.org/package/salak-yaml) Yaml support for salak.+- [](https://hackage.haskell.org/package/salak-toml) Toml support for salak.
salak-yaml.cabal view
@@ -4,11 +4,12 @@ -- -- see: https://github.com/sol/hpack ----- hash: f53e184987748661ccdbb96514af718308f885ff9f08288913b8ab60202b7814+-- hash: ad7ee67276c836bd6b884a0b51234844cf3c551850c3f27a1d3b62564826ca75 name: salak-yaml-version: 0.3.5.1+version: 0.3.5.3 synopsis: Configuration Loader for yaml+description: Yaml support for [salak](https://hackage.haskell.org/package/salak). category: Library, Configuration homepage: https://github.com/leptonyu/salak#readme author: Daniel YU@@ -20,6 +21,7 @@ extra-source-files: README.md salak.yml+ CHANGELOG.md library exposed-modules:@@ -31,7 +33,7 @@ default-extensions: BangPatterns CPP DefaultSignatures DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses NoOverloadedLists OverloadedStrings RankNTypes RecordWildCards ScopedTypeVariables TupleSections TypeOperators ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures build-depends:- base >=4.10 && <5+ base >=4.9 && <5 , conduit >=1.3.1 && <1.4 , libyaml >=0.1.1 && <0.2 , salak >=0.3.5 && <0.4@@ -51,7 +53,7 @@ ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures -rtsopts -threaded -with-rtsopts=-K1K build-depends: QuickCheck <2.14- , base >=4.10 && <5+ , base >=4.9 && <5 , conduit >=1.3.1 && <1.4 , exceptions , hspec ==2.*@@ -73,7 +75,7 @@ default-extensions: BangPatterns CPP DefaultSignatures DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses NoOverloadedLists OverloadedStrings RankNTypes RecordWildCards ScopedTypeVariables TupleSections TypeOperators ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures -rtsopts -threaded -with-rtsopts=-K1K build-depends:- base >=4.10 && <5+ base >=4.9 && <5 , conduit >=1.3.1 && <1.4 , criterion , libyaml >=0.1.1 && <0.2
src/Salak/Yaml.hs view
@@ -15,7 +15,7 @@ ) where import Control.Exception (throwIO)-import Control.Monad.IO.Class (MonadIO, liftIO)+import Control.Monad.IO.Class import Data.Conduit hiding (Source) import Data.Text.Encoding (decodeUtf8) import Salak