summaryrefslogtreecommitdiffhomepage
path: root/CHANGELOG
diff options
context:
space:
mode:
authorArtyom Kazak <yom@artyom.me>2017-04-22 16:14:52 +0300
committerJasper Van der Jeugt <jaspervdj@gmail.com>2017-04-22 15:14:52 +0200
commitd10ebd066bfb93ae8e0a155c45da3c574a431911 (patch)
treec90d94d24c647b0397f6f0e9d80444d44092e873 /CHANGELOG
parent842bd709e9c3b76c2ab25b4d24a356036a8ba22e (diff)
downloadstylish-haskell-d10ebd066bfb93ae8e0a155c45da3c574a431911.tar.gz
Deduplicate import specs (#165)
Fixes #163
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e3ca0ff..6c4574b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,6 +5,8 @@
causing parsing errors
* Don't leave a `#-}` hanging on the next line when `language_pragmas`
is set to `compact` and the `#-}` doesn't fit into character limit
+ * Deduplicate import specs (i.e. `import Foo (a, a, b)` becomes
+ `import Foo (a, b)`)
- 0.7.1.0
* Keep `safe` and `{-# SOURCE #-}` import annotations (by Moritz Drexl)