salak-toml 0.2.9.3 → 0.2.10
raw patch · 2 files changed
+9/−9 lines, 2 filesdep ~QuickCheckdep ~salakdep ~tomlandPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: QuickCheck, salak, tomland, unordered-containers
API changes (from Hackage documentation)
Files
- salak-toml.cabal +8/−8
- src/Salak/Toml.hs +1/−1
salak-toml.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.12 name: salak-toml-version: 0.2.9.3+version: 0.2.10 license: BSD3 license-file: LICENSE copyright: (c) 2018 Daniel YU@@ -25,11 +25,11 @@ build-depends: base >=4.10 && <5, mtl >=2.2.2 && <2.3,- salak ==0.2.9.*,+ salak >=0.2.10 && <0.3, text >=1.2.3.1 && <1.3, time >=1.8.0.2 && <1.9,- tomland ==1.0.*,- unordered-containers >=0.2.9.0 && <0.3+ tomland >=1.0 && <1.2,+ unordered-containers >=0.2.10.0 && <0.3 test-suite spec type: exitcode-stdio-1.0@@ -41,12 +41,12 @@ default-language: Haskell2010 ghc-options: -Wall -fno-warn-orphans -fno-warn-missing-signatures build-depends:- QuickCheck >=2.12.6.1 && <2.14,+ QuickCheck >=2.13.2 && <2.14, base >=4.10 && <5, hspec ==2.*, mtl >=2.2.2 && <2.3,- salak ==0.2.9.*,+ salak >=0.2.10 && <0.3, text >=1.2.3.1 && <1.3, time >=1.8.0.2 && <1.9,- tomland ==1.0.*,- unordered-containers >=0.2.9.0 && <0.3+ tomland >=1.0 && <1.2,+ unordered-containers >=0.2.10.0 && <0.3
src/Salak/Toml.hs view
@@ -69,7 +69,7 @@ -- | Load Toml loadToml :: MonadIO m => FilePath -> LoadSalakT m ()-loadToml file = loadFile file $ \i s -> do+loadToml file = load file $ \i s -> do re <- liftIO (parse <$> IO.readFile file) case re of Left e -> tell [show e] >> return s