diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2012 Simon Hengel <sol@typeful.net>
+Copyright (c) 2012-2015 Simon Hengel <sol@typeful.net>
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/nanospec.cabal b/nanospec.cabal
--- a/nanospec.cabal
+++ b/nanospec.cabal
@@ -1,8 +1,8 @@
 name:             nanospec
-version:          0.2.0
+version:          0.2.1
 license:          MIT
 license-file:     LICENSE
-copyright:        (c) 2012 Simon Hengel
+copyright:        (c) 2012-2015 Simon Hengel
 author:           Simon Hengel <sol@typeful.net>
 maintainer:       Simon Hengel <sol@typeful.net>
 category:         Testing
@@ -34,7 +34,7 @@
   cpp-options:
       -DTEST
   ghc-options:
-      -Wall -Werror
+      -Wall
   hs-source-dirs:
       src, test
   main-is:
diff --git a/src/Test/Hspec.hs b/src/Test/Hspec.hs
--- a/src/Test/Hspec.hs
+++ b/src/Test/Hspec.hs
@@ -26,9 +26,12 @@
 #endif
 ) where
 
+#if !(MIN_VERSION_base(4,8,0))
 import           Control.Applicative
-import           Control.Monad
 import           Data.Monoid
+#endif
+
+import           Control.Monad
 import           Data.List (intercalate)
 import           Data.Typeable
 import qualified Control.Exception as E
diff --git a/test/Test/HspecSpec.hs b/test/Test/HspecSpec.hs
--- a/test/Test/HspecSpec.hs
+++ b/test/Test/HspecSpec.hs
@@ -1,9 +1,12 @@
-{-# LANGUAGE PackageImports #-}
+{-# LANGUAGE PackageImports, CPP #-}
 module Main (main) where
 
 import "hspec"   Test.Hspec
 
+#if !(MIN_VERSION_base(4,8,0))
 import           Control.Applicative
+#endif
+
 import qualified Test.Hspec as H
 import qualified Control.Exception as E
 import           System.Exit
