Skip to content

Commit

Permalink
all: bump to 0.9.0
Browse files Browse the repository at this point in the history
Fixes #75.
  • Loading branch information
mvdan authored and int-e committed Oct 6, 2018
1 parent 93c7602 commit 708aa7a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 0.9.0

* Support GHC 8.6
* Drop support for GHC 8.0

### 0.8.0

* Support GHC 8.4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ It is, essentially, a huge subset of the GHC API wrapped in a simpler
API.

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

### Example

Expand Down
2 changes: 1 addition & 1 deletion hint.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: hint
version: 0.8.0
version: 0.9.0
description:
This library defines an Interpreter monad. It allows to load Haskell
modules, browse them, type-check and evaluate strings with Haskell
Expand Down
4 changes: 2 additions & 2 deletions src/Hint/Base.hs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ import Hint.Extension

-- | Version of the underlying ghc api. Values are:
--
-- * @802@ for GHC 8.2.x
--
-- * @804@ for GHC 8.4.x
--
-- * @806@ for GHC 8.6.x
--
-- * etc...
ghcVersion :: Int
ghcVersion = __GLASGOW_HASKELL__
Expand Down

0 comments on commit 708aa7a

Please sign in to comment.