diff --git a/blosum.cabal b/blosum.cabal
--- a/blosum.cabal
+++ b/blosum.cabal
@@ -1,5 +1,5 @@
 name:                blosum
-version:             0.1.1.1
+version:             0.1.1.2
 synopsis:            BLOSUM generator
 description:         Please see README.md
 homepage:            http://github.com/GregorySchwartz/blosum#readme
diff --git a/src/Matrix.hs b/src/Matrix.hs
--- a/src/Matrix.hs
+++ b/src/Matrix.hs
@@ -26,7 +26,7 @@
 import Control.Lens
 
 -- Cabal
-import Data.Fasta.Text
+import Data.Fasta.Text (FastaSequence)
 
 -- Local
 import Types
diff --git a/src/Types.hs b/src/Types.hs
--- a/src/Types.hs
+++ b/src/Types.hs
@@ -13,7 +13,7 @@
 import qualified Data.Sequence as Seq
 
 -- Cabal
-import Data.Fasta.Text
+import Data.Fasta.Text (FastaSequence)
 
 newtype AA        = AA { unAA :: Char } deriving (Eq, Ord, Show, Read)
 newtype Nuc       = Nuc Char deriving (Eq, Ord, Show, Read)
diff --git a/src/Utility.hs b/src/Utility.hs
--- a/src/Utility.hs
+++ b/src/Utility.hs
@@ -24,7 +24,7 @@
 
 -- Cabal
 import qualified Data.Text as T
-import Data.Fasta.Text
+import Data.Fasta.Text ( FastaSequence, fastaSeq, fastaHeader )
 
 -- Local
 import Types
