diff --git a/Codec/Compression/QuickLZ.hsc b/Codec/Compression/QuickLZ.hsc
--- a/Codec/Compression/QuickLZ.hsc
+++ b/Codec/Compression/QuickLZ.hsc
@@ -1,10 +1,10 @@
 {-# LANGUAGE CPP #-}
 -- |
 -- Module      : Codec.Compression.QuickLZ
--- Copyright   : (c) Austin Seipp 2011
+-- Copyright   : (c) Austin Seipp 2011-2012
 -- License     : GPLv2
 -- 
--- Maintainer  : as@hacks.yi.org
+-- Maintainer  : mad.one@gmail.com
 -- Stability   : experimental
 -- Portability : portable
 -- 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -15,6 +15,8 @@
 QuickLZ 1.5.0 has a compression speed of 308Mbyte/s, and a
 decompression speed of 358Mbyte/s (their benchmarks, Core i7 920.)
 
+[travis-ci.org](http://travis-ci.org) results: [![Build Status](https://secure.travis-ci.org/thoughtpolice/hs-quicklz.png?branch=master)](http://travis-ci.org/thoughtpolice/hs-quicklz)
+
 # Installation
 
 Just use cabal:
diff --git a/quicklz.cabal b/quicklz.cabal
--- a/quicklz.cabal
+++ b/quicklz.cabal
@@ -1,5 +1,5 @@
 name:                quicklz
-version:             1.5.0.9
+version:             1.5.0.10
 synopsis:            QuickLZ compression for ByteStrings
 description:
   This package provides a high level binding to the QuickLZ
@@ -42,8 +42,8 @@
 library
   exposed-modules: Codec.Compression.QuickLZ	
   build-depends: 
-    base >= 3 && < 5,
-    bytestring == 0.9.*
+    base < 5,
+    bytestring >= 0.9
 
   c-sources:       cbits/quicklz.c
   include-dirs:    cbits
@@ -59,11 +59,11 @@
   type:           exitcode-stdio-1.0
 
   build-depends:
-    base,
-    bytestring     == 0.9.*,
-    QuickCheck     == 2.4.*,
-    test-framework == 0.4.*,
-    test-framework-quickcheck2 == 0.2.*,
+    base < 5,
+    bytestring     >= 0.9,
+    QuickCheck     >= 2.4,
+    test-framework >= 0.4,
+    test-framework-quickcheck2 >= 0.2,
     quicklz
 
   ghc-options:      -fno-cse
