diff --git a/Text/Regex/PCRE.hs b/Text/Regex/PCRE.hs
--- a/Text/Regex/PCRE.hs
+++ b/Text/Regex/PCRE.hs
@@ -38,15 +38,7 @@
 module Text.Regex.PCRE(getVersion_Text_Regex_PCRE
   ,module Text.Regex.Base
   -- ** Wrap, for '=~' and '=~~', types and constants
-  ,module Text.Regex.PCRE.Wrap
-  -- ** String, instances only
-  ,module Text.Regex.PCRE.String
-  -- ** Seq Char, instances only
-  ,module Text.Regex.PCRE.Sequence
-  -- ** ByteString, instances only
-  ,module Text.Regex.PCRE.ByteString
-  -- ** Lazy ByteString, instances only
-  ,module Text.Regex.PCRE.ByteString.Lazy) where
+  ,module Text.Regex.PCRE.Wrap) where
 
 import Text.Regex.PCRE.Wrap(Regex, CompOption(CompOption), ExecOption(ExecOption), (=~), (=~~),
   unusedOffset, getNumSubs, configUTF8, getVersion,
@@ -65,6 +57,6 @@
 
 getVersion_Text_Regex_PCRE :: Version
 getVersion_Text_Regex_PCRE =
-  Version { versionBranch = [0,94]  -- Keep in sync with regex-pcre.cabal
+  Version { versionBranch = [0,94,1]  -- Keep in sync with regex-pcre.cabal
           , versionTags = ["unstable"]
           }
diff --git a/regex-pcre.cabal b/regex-pcre.cabal
--- a/regex-pcre.cabal
+++ b/regex-pcre.cabal
@@ -1,7 +1,7 @@
 Name:                   regex-pcre
 -- Keep the Version below in sync with ./Text/Regex/PCRE.hs value getVersion_Text_Regex_PCRE :: Version
-Version:                0.94
-Cabal-Version:          >=1.2
+Version:                0.94.1
+Cabal-Version:          >=1.2.3
 License:                BSD3
 License-File:           LICENSE
 Copyright:              Copyright (c) 2006, Christopher Kuklewicz
@@ -22,8 +22,10 @@
     -- Need the next symbol for using CPP to get Data.ByteString.Base|Unsafe in
     --  ./Text/Regex/Posix/ByteString.hs and  ./Text/Regex/Posix/ByteString/Lazy.hs
     CPP-Options: "-DSPLIT_BASE=1"
+    Extensions:    MultiParamTypeClasses, FunctionalDependencies, CPP, ForeignFunctionInterface, PatternSignatures, GeneralizedNewtypeDeriving, FlexibleContexts, TypeSynonymInstances, FlexibleInstances
   else
-    build-depends: base < 3.0, regex-base >= 0.93
+    Build-Depends: base < 3.0, regex-base >= 0.93
+    Extensions:    MultiParamTypeClasses, FunctionalDependencies, CPP
   -- Data-Files:
   -- Extra-Source-Files:
   -- Extra-Tmp-Files:
@@ -38,7 +40,6 @@
   -- HS-Source-Dirs:         "."
   -- The CPP is for using -DSPLIT_BASE=1 to get Data.ByteString.Base|Unsafe
   -- And the CPP is for using -DHAVE_PCRE_H to get the local posix library
-  Extensions:             MultiParamTypeClasses, FunctionalDependencies, CPP
   -- GHC-Options:            -Wall -Werror -O2
   GHC-Options:            -Wall -O2
   -- GHC-Options:            -Wall -ddump-minimal-imports
