diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,9 @@
+## 0.8.0.7 (2017-02-21)
+
+Fixes:
+  - Fix hlint tests.
+  - Note GHC 8.0.2 compatibility in cabal file.
+
 ## 0.8.0.6 (2017-01-25)
 
 Fixes:
diff --git a/default.nix b/default.nix
--- a/default.nix
+++ b/default.nix
@@ -5,7 +5,7 @@
 }:
 mkDerivation {
   pname = "hpio";
-  version = "0.8.0.6";
+  version = "0.8.0.7";
   src = ./.;
   isLibrary = true;
   isExecutable = true;
diff --git a/hpio.cabal b/hpio.cabal
--- a/hpio.cabal
+++ b/hpio.cabal
@@ -1,5 +1,5 @@
 Name:                   hpio
-Version:                0.8.0.6
+Version:                0.8.0.7
 Cabal-Version:          >= 1.10
 Build-Type:             Simple
 Author:                 Drew Hess <src@drewhess.com>
@@ -10,7 +10,7 @@
 License:                BSD3
 License-File:           LICENSE
 Copyright:              Copyright (c) 2016, Drew Hess
-Tested-With:            GHC == 7.8.4, GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1
+Tested-With:            GHC == 7.8.4, GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2
 Category:               System
 Synopsis:               Monads for GPIO in Haskell
 Description:
@@ -257,4 +257,4 @@
 Source-Repository this
   Type:                 git
   Location:             git://github.com/dhess/hpio.git
-  Tag:                  v0.8.0.6
+  Tag:                  v0.8.0.7
diff --git a/shell.nix b/shell.nix
--- a/shell.nix
+++ b/shell.nix
@@ -11,7 +11,7 @@
       }:
       mkDerivation {
         pname = "hpio";
-        version = "0.8.0.6";
+        version = "0.8.0.7";
         src = ./.;
         isLibrary = true;
         isExecutable = true;
diff --git a/src/System/GPIO/Linux/Sysfs/IO.hs b/src/System/GPIO/Linux/Sysfs/IO.hs
--- a/src/System/GPIO/Linux/Sysfs/IO.hs
+++ b/src/System/GPIO/Linux/Sysfs/IO.hs
@@ -16,7 +16,6 @@
 {-# LANGUAGE ForeignFunctionInterface #-}
 {-# LANGUAGE GeneralizedNewtypeDeriving #-}
 {-# LANGUAGE InterruptibleFFI #-}
-{-# LANGUAGE LambdaCase #-}
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE PackageImports #-}
 {-# LANGUAGE Trustworthy #-}
diff --git a/src/System/GPIO/Monad.hs b/src/System/GPIO/Monad.hs
--- a/src/System/GPIO/Monad.hs
+++ b/src/System/GPIO/Monad.hs
@@ -13,7 +13,6 @@
 
 {-# LANGUAGE FlexibleInstances #-}
 {-# LANGUAGE FunctionalDependencies #-}
-{-# LANGUAGE LambdaCase #-}
 {-# LANGUAGE MultiParamTypeClasses #-}
 {-# LANGUAGE PackageImports #-}
 {-# LANGUAGE UndecidableInstances #-}
