packages feed

stylish-haskell 0.5.9.1 → 0.5.10.0

raw patch · 3 files changed

+12/−5 lines, 3 filesdep ~haskell-src-exts

Dependency ranges changed: haskell-src-exts

Files

+ CHANGELOG view
@@ -0,0 +1,3 @@+- 0.5.10.0+    * Bump `haskell-src-exts` dependency to 1.15+    * Fix test which was not run before
stylish-haskell.cabal view
@@ -1,5 +1,5 @@ Name:          stylish-haskell-Version:       0.5.9.1+Version:       0.5.10.0 Synopsis:      Haskell code prettifier Homepage:      https://github.com/jaspervdj/stylish-haskell License:       BSD3@@ -21,6 +21,9 @@ Data-files:   data/stylish-haskell.yaml +Extra-source-files:+  CHANGELOG+ Library   Exposed-modules: Language.Haskell.Stylish   Hs-source-dirs: src@@ -49,7 +52,7 @@     containers       >= 0.3  && < 0.6,     directory        >= 1.1  && < 1.3,     filepath         >= 1.1  && < 1.4,-    haskell-src-exts >= 1.14 && < 1.15,+    haskell-src-exts >= 1.14 && < 1.16,     mtl              >= 2.0  && < 2.2,     syb              >= 0.3  && < 0.5,     yaml             >= 0.7  && < 0.9@@ -70,7 +73,7 @@     containers       >= 0.3  && < 0.6,     directory        >= 1.1  && < 1.3,     filepath         >= 1.1  && < 1.4,-    haskell-src-exts >= 1.14 && < 1.15,+    haskell-src-exts >= 1.14 && < 1.16,     mtl              >= 2.0  && < 2.2,     syb              >= 0.3  && < 0.5,     yaml             >= 0.7  && < 0.9@@ -103,7 +106,7 @@     containers       >= 0.3  && < 0.6,     directory        >= 1.1  && < 1.3,     filepath         >= 1.1  && < 1.4,-    haskell-src-exts >= 1.14 && < 1.15,+    haskell-src-exts >= 1.14 && < 1.16,     mtl              >= 2.0  && < 2.2,     syb              >= 0.3  && < 0.5,     yaml             >= 0.7  && < 0.9
tests/Language/Haskell/Stylish/Step/LanguagePragmas/Tests.hs view
@@ -23,6 +23,7 @@     , testCase "case 03" case03     , testCase "case 04" case04     , testCase "case 05" case05+    , testCase "case 06" case06     ]  @@ -115,7 +116,7 @@         ]  case06 :: Assertion-case06 = expected @=? testStep (step 80 CompactLine True) input+case06 = expected @=? testStep (step 80 CompactLine False) input   where     input = unlines         [ "{-# LANGUAGE TypeOperators, StandaloneDeriving, DeriveDataTypeable,"