stylish-haskell 0.5.12.0 → 0.5.13.0
raw patch · 3 files changed
+5/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG +3/−0
- src/Language/Haskell/Stylish/Parse.hs +1/−1
- stylish-haskell.cabal +1/−1
CHANGELOG view
@@ -1,3 +1,6 @@+- 0.5.13.0+ * Fix issue with shebang code+ - 0.5.12.0 * Add support for shebang at start of file
src/Language/Haskell/Stylish/Parse.hs view
@@ -31,7 +31,7 @@ -- | Remove shebang from the first line unShebang :: String -> String unShebang str- | "#!" `isPrefixOf` str = unlines $ drop 1 $ lines str+ | "#!" `isPrefixOf` str = unlines $ ("" :) $ drop 1 $ lines str | otherwise = str
stylish-haskell.cabal view
@@ -1,5 +1,5 @@ Name: stylish-haskell-Version: 0.5.12.0+Version: 0.5.13.0 Synopsis: Haskell code prettifier Homepage: https://github.com/jaspervdj/stylish-haskell License: BSD3