diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,4 +1,6 @@
-Version 1.3.0:
+
+Version 1.3:
 - bump version of Hint
 - bump version of eprocess
 - Corentin Dupont takes over maintainance (as agreed with Fernando Benavides)
+- compiling with GHC 7.8
diff --git a/hint-server.cabal b/hint-server.cabal
--- a/hint-server.cabal
+++ b/hint-server.cabal
@@ -1,5 +1,5 @@
 name: hint-server
-version: 1.3.1
+version: 1.3.2
 cabal-version: >=1.6
 build-type: Simple
 license: BSD3
@@ -11,7 +11,6 @@
 description: This library provides a server process (implemented using eprocess) that can receive and run actions in the Interpreter monad.
 category: Concurrency, Language, Compilers/Interpreters
 author: Fernando "Brujo" Benavides
-tested-with: GHC ==6.12.1
 data-files: LICENSE README
 data-dir: ""
 extra-source-files: Setup.hs, changelog
diff --git a/src/Language/Haskell/Interpreter/Server.hs b/src/Language/Haskell/Interpreter/Server.hs
--- a/src/Language/Haskell/Interpreter/Server.hs
+++ b/src/Language/Haskell/Interpreter/Server.hs
@@ -1,3 +1,5 @@
+{-# LANGUAGE ImpredicativeTypes #-}
+
 -- | This module provides a server process (implemented using eprocess) that can receive and run actions in the Interpreter monad.
 module Language.Haskell.Interpreter.Server (
 -- * Types
@@ -20,7 +22,7 @@
 instance MonadInterpreter m => MonadInterpreter (ReceiverT r m) where
     fromSession = lift . fromSession
     modifySessionRef a = lift . (modifySessionRef a)
-    runGhc = lift . runGhc 
+    runGhc = lift . runGhc
 
 -- | Starts the server. Usage:
 -- @
