diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Don Stewart 2006-2007, shelarcy 2011-2012.
+Copyright Don Stewart 2006-2007, shelarcy 2011-2013.
 
 All rights reserved.
 
diff --git a/Test/QuickCheck/Parallel.hs b/Test/QuickCheck/Parallel.hs
--- a/Test/QuickCheck/Parallel.hs
+++ b/Test/QuickCheck/Parallel.hs
@@ -5,7 +5,7 @@
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  Test.QuickCheck.Parallel
--- Copyright   :  (c) Don Stewart 2006-2007, shelarcy 2011-2012
+-- Copyright   :  (c) Don Stewart 2006-2007, shelarcy 2011-2013
 -- License     :  BSD-style (see the file LICENSE)
 --
 -- Maintainer  :  shelarcy <shelarcy@gmail.com>
@@ -19,7 +19,6 @@
 module Test.QuickCheck.Parallel (
                                  module Test.QuickCheck,
                                  pRun,
-                                 pRun',
                                  pRunAllProcessors,
                                  pRunWithNum,
                                  Name,
@@ -88,11 +87,6 @@
 #endif
     pRunWithNum num depth tests
 
--- | Deprecated: Backwards-compatible API
-{-# DEPRECATED pRun' "use pRun instead." #-}
-pRun'  :: Depth -> [Test] -> IO ()
-pRun' = pRun
-
 -- | Variant of 'pRun'. Run a list of QuickCheck properties in parallel
 -- chunks, using all Processors.
 pRunAllProcessors  :: Depth -> [Test] -> IO ()
@@ -164,13 +158,13 @@
     doesAnyFailureTest :: Result -> TVar (ExitCode) -> IO ()
     doesAnyFailureTest v ec'
       = case v of
-          (GaveUp _ _ _)          -> noticeFailureTest ec'
+          (GaveUp _ _ _)            -> noticeFailureTest ec'
 #if MIN_VERSION_QuickCheck(2,6,0)
           (Failure _ _ _ _ _ _ _ _) -> noticeFailureTest ec'
 #else
-          (Failure _ _ _ _ _ _ _) -> noticeFailureTest ec'
+          (Failure _ _ _ _ _ _ _)   -> noticeFailureTest ec'
 #endif
-          _                       -> return ()
+          _                         -> return ()
 
     testFailure :: ExitCode
     testFailure = ExitFailure 1
diff --git a/pqc.cabal b/pqc.cabal
--- a/pqc.cabal
+++ b/pqc.cabal
@@ -1,16 +1,17 @@
 name:                pqc
-version:             0.7.1.2
+version:             0.8
 description:         Parallel batch driver for QuickCheck
 synopsis:            Parallel batch driver for QuickCheck
 category:            Testing
 license:             BSD3
 license-file:        LICENSE
 Author:              Don Stewart
-Copyright:           Don Stewart 2006-2007, shelarcy 2011-2012
+Copyright:           Don Stewart 2006-2007, shelarcy 2011-2013
 Maintainer:          shelarcy <shelarcy@gmail.com>
 homepage:            http://hub.darcs.net/shelarcy/pqc
-build-type: Simple
-Cabal-Version: >= 1.10
+build-type:          Simple
+Cabal-Version:       >= 1.10
+bug-reports:         http://hub.darcs.net/shelarcy/pqc/issues
 
 source-repository head
    type: darcs
