stylish-haskell 0.6.4.0 → 0.6.5.0
raw patch · 3 files changed
+7/−2 lines, 3 filesdep ~HUnitPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: HUnit
API changes (from Hackage documentation)
Files
- CHANGELOG +4/−0
- lib/Language/Haskell/Stylish/Align.hs +1/−0
- stylish-haskell.cabal +2/−2
CHANGELOG view
@@ -1,5 +1,9 @@ # CHANGELOG +- 0.6.5.0+ * Fix issue with unit records (by Mizunashi Mana)+ * Bump `HUnit` to 1.5+ - 0.6.4.0 * Remove `XmlSyntax` from whitelisted language extensions, since it was causing parsing errors
lib/Language/Haskell/Stylish/Align.hs view
@@ -59,6 +59,7 @@ :: Int -- ^ Max columns -> [Alignable H.SrcSpan] -- ^ Alignables -> [Change String] -- ^ Changes performing the alignment.+align _ [] = [] align maxColumns alignment -- Do not make any change if we would go past the maximum number of columns. | longestLeft + longestRight > maxColumns = []
stylish-haskell.cabal view
@@ -1,5 +1,5 @@ Name: stylish-haskell-Version: 0.6.4.0+Version: 0.6.5.0 Synopsis: Haskell code prettifier Homepage: https://github.com/jaspervdj/stylish-haskell License: BSD3@@ -112,7 +112,7 @@ Language.Haskell.Stylish.Verbose Build-depends:- HUnit >= 1.2 && < 1.4,+ HUnit >= 1.2 && < 1.6, test-framework >= 0.4 && < 0.9, test-framework-hunit >= 0.2 && < 0.4, -- Copied from regular dependencies...