diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 pipes-rt
 ========
 
-[![Build Status](https://secure.travis-ci.org/ImAlsoGreg/pipes-rt.png)](http://travis-ci.org/ImAlsoGreg/pipes-rt)
+[![Build Status](https://travis-ci.org/imalsogreg/pipes-rt.svg?branch=master)](https://travis-ci.org/imalsogreg/pipes-rt.svg?branch=master)
 
 A few pipes to yield values at a steady rate, as a poisson process, or according to the values themselves
 
diff --git a/pipes-rt.cabal b/pipes-rt.cabal
--- a/pipes-rt.cabal
+++ b/pipes-rt.cabal
@@ -1,5 +1,5 @@
 Name:               pipes-rt
-Version:            0.4.2
+Version:            0.5.0
 License:            BSD3
 License-File:       LICENSE
 Copyright:          (c) 2013 Greg Hale
@@ -12,6 +12,7 @@
 Build-Type:         Simple
 Synopsis:           A few pipes to control the timing of yields
 Cabal-Version:      >=1.8
+tested-with:        GHC==7.4.1, GHC==7.4.2, GHC==7.6.2, GHC==7.6.3, GHC==7.8.4, GHC==7.10.1
 Extra-Source-Files: README.md
 Description:
   Use this library to yield values downstream according to different timing rules.  For example, use the relTimeCat pipe, and your data will be yielded according to their timestamps.  Or use poissonCat to yield values with poisson timing.
@@ -23,10 +24,10 @@
 Library
   Hs-Source-Dirs: lib
   Build-Depends:
-    base        (>= 4.2 && < 4.8)
-   ,pipes       (>= 4   && < 4.2)
-   ,time        (>= 1.4 && < 1.5)
-   ,mwc-random  (>= 0.13 && < 0.14)
+    base        >= 4.2 && < 4.9
+   ,pipes       >= 4   && < 4.2
+   ,time        >= 1.4 && < 1.6
+   ,mwc-random  >= 0.13 && < 0.14
   Exposed-Modules:
     Pipes.RealTime
 
