Skip to content

Commit 708aa7a

Browse files
mvdanint-e
authored andcommitted
all: bump to 0.9.0
Fixes #75.
1 parent 93c7602 commit 708aa7a

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 0.9.0
2+
3+
* Support GHC 8.6
4+
* Drop support for GHC 8.0
5+
16
### 0.8.0
27

38
* Support GHC 8.4

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ It is, essentially, a huge subset of the GHC API wrapped in a simpler
1212
API.
1313

1414
Compatibility is kept with the three last major GHC releases. For
15-
example, if the current version is GHC 8.4, Hint will work on 8.4, 8.2
16-
and 8.0.
15+
example, if the current version is GHC 8.6, Hint will work on 8.6, 8.4
16+
and 8.2.
1717

1818
### Example
1919

hint.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: hint
2-
version: 0.8.0
2+
version: 0.9.0
33
description:
44
This library defines an Interpreter monad. It allows to load Haskell
55
modules, browse them, type-check and evaluate strings with Haskell

src/Hint/Base.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ import Hint.Extension
3232

3333
-- | Version of the underlying ghc api. Values are:
3434
--
35-
-- * @802@ for GHC 8.2.x
36-
--
3735
-- * @804@ for GHC 8.4.x
3836
--
37+
-- * @806@ for GHC 8.6.x
38+
--
3939
-- * etc...
4040
ghcVersion :: Int
4141
ghcVersion = __GLASGOW_HASKELL__

0 commit comments

Comments
 (0)