-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCHANGELOG
102 lines (63 loc) · 2.19 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
v0.14.0.0
* #144, support GHC 9.8
v0.13.0.0
* #137, support GHC 9.6 (@9999years)
v0.12.0.0
* #134, Make libdir a parameter instead of using GHC.Paths.libdir (@fendor)
v0.11.0.0
* support GHC 9.4
v0.10.0.0
* support GHC 9.2; drop support for GHC <= 9.0 (@alanz)
v0.9.3.0
* #113, Fix Annotation when context parens are removed
v0.9.2.0
* #110, Support GHC 9.0.1
v0.9.1.0
* #109, Use the correct DynFlags when parsing refactoring templates
v0.9.0.0
* #106, expose Refact.Internal
* #104, ensure space between "do" and the next identifier
* support GHC 8.10.3
* #101, do not apply a refactoring if it drops comments
* #100, add applyRefactorings', which is like applyRefactoring, but takes a parsed module and annotations, rather than a FilePath to parse
* #98, make applyRefactoring take a list of GHC extensions
* #97, fix a bug where backquotes surrounding substitution variables are dropped after substitution
* #85, show actual type (if any) if expected type is not found
* #84, improve error message of findGen
* #81, remove hint description from the input of applyRefactorings
* #79, improve error message when neither target nor refact file is specified
* #78, remove some exported functions in Refact.Apply that are only relevant to runPipe
v0.8.2.1
* support GHC 8.8.4
* remove dependency on mtl
v0.8.2.0
* #75, support refactoring for Eta reduce
v0.8.1.0
* #68, support GHC 8.6
* #63, support GHC 8.8
* #64, add LANGUAGE pragmas to DynFlag
* #62, fix a bug where "y = f(x)" is refactored into "y = fx"
* #61, fix a bug where "x < -2 * 3" is printed as "x < 2 * 3"
* #51, fix a bug where [1,2..5] is printed as [12..5]
* #59, do not process the target file if there's no hint
v0.8.0.0
* 8.10 release compatability
v0.7.0.0
* 8.8 release compatability
* Specify language extensions using -X
v0.6.0.0
* 8.6 release compatibility
v0.5.0.0
* 8.4 release compatibility
v0.4.1.0
* 8.2 release compatibility
v0.4.0.0
* 8.2rc2 compatibility
v0.3.0.1
* Version bound tweaking to build with optparse-applicative 0.13
v0.3
* GHC 8.0 compatibility
v0.2
* API refactoring to make the tool usable as a library.
v0.1
* Initial Release