-
Notifications
You must be signed in to change notification settings - Fork 10
/
CHANGELOG
105 lines (80 loc) · 1.43 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
0.11.0
------
* Add option '--hiding' to hide symbols from import
0.10.0
------
* Ensure that no imports are placed inbetween cpp directives
0.9.0
-----
* Support haddock comments
0.8.8
-----
* Update README
0.8.7
-----
* Raise upper bound of 'haskell-src-exts'
* Tested with ghc 8.6.3
0.8.6
-----
* Raise upper bounds of tasty
* Tested with GHC 8.4.2
0.8.5
-----
* Raise upper bounds of tasty and haskell-src-exts
0.8.3
-----
* Raise upper bound of directory
0.8.2
-----
* Update README
0.8.1
-----
* Use SrcSpan info of haskell-src-exts instead of parsing import declarations by hand
0.8.0
-----
* Changes for haskell-src-exts 1.18.0
* Support GHC 8.0.1
0.7.1
-----
* Switch from lens to microlens (for faster compiling)
0.7
---
* Changes for haskell-src-exts 1.17.0
0.6.7
-----
* More robust handling of invalid Haskell source code
0.6.6
-----
* Raise upper bounds of dependencies
0.6.5
-----
* Support GHC 7.10.1
0.6.4
-----
* Raise upper bounds of dependencies
0.6.3
-----
* Raise upper bounds of dependencies
0.6.2
-----
* Fixing build failure of tasty 0.8.1.3
0.6.1
-----
* Changes for haskell-src-exts 1.16.0
0.6
---
* Add option '--as'
$> hsimport -m 'Control.Monad' --as 'CM' SomeSource.hs
=> import Control.Monad as CM
0.5.2
-----
* Build/tested with GHC 7.8.3
0.5.1
-----
* Better handling of multi line imports like:
import Control.Monad
(when)
import Control.Monad
( when
, unless
)