diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,3 @@
+- 0.5.10.0
+    * Bump `haskell-src-exts` dependency to 1.15
+    * Fix test which was not run before
diff --git a/stylish-haskell.cabal b/stylish-haskell.cabal
--- a/stylish-haskell.cabal
+++ b/stylish-haskell.cabal
@@ -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
diff --git a/tests/Language/Haskell/Stylish/Step/LanguagePragmas/Tests.hs b/tests/Language/Haskell/Stylish/Step/LanguagePragmas/Tests.hs
--- a/tests/Language/Haskell/Stylish/Step/LanguagePragmas/Tests.hs
+++ b/tests/Language/Haskell/Stylish/Step/LanguagePragmas/Tests.hs
@@ -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,"
