hindent 4.3.3 → 4.3.4
raw patch · 2 files changed
+4/−3 lines, 2 filesdep ~descriptivePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: descriptive
API changes (from Hackage documentation)
Files
- hindent.cabal +2/−2
- src/main/Main.hs +2/−1
hindent.cabal view
@@ -1,5 +1,5 @@ name: hindent-version: 4.3.3+version: 4.3.4 synopsis: Extensible Haskell pretty printer description: Extensible Haskell pretty printer. Both a library and an executable. .@@ -40,7 +40,7 @@ build-depends: base >= 4 && < 5 , hindent , text- , descriptive >= 0.3 && < 0.7+ , descriptive >= 0.7 && < 0.8 , haskell-src-exts executable hindent-generate-tests
src/main/Main.hs view
@@ -44,7 +44,8 @@ deriving (Show) -- | Program options.-options :: Consumer [Text] (Option Stoppers) (Style,[Extension])+options :: Monad m+ => Consumer [Text] (Option Stoppers) m (Style,[Extension]) options = ver *> ((,) <$> style <*> exts)