diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 # CryptoCompare
 
 [![Build Status](https://travis-ci.org/aviaviavi/cryptocompare.svg?branch=master)](https://travis-ci.org/aviaviavi/cryptocompare)
-[![Hackage](https://img.shields.io/hackage/v/cryptocompare.svg)](https://hackage.haskell.org/package/cryptocompare-0.0.3)
+[![Hackage](https://img.shields.io/hackage/v/cryptocompare.svg)](https://hackage.haskell.org/package/cryptocompare-0.1.0)
 
 A Haskell wrapper to the public [CryptoCompare API](https://www.cryptocompare.com/api/), a 
 source of information and pricing of different crypto currencies. See hackage for API documentation.
diff --git a/cryptocompare.cabal b/cryptocompare.cabal
--- a/cryptocompare.cabal
+++ b/cryptocompare.cabal
@@ -1,5 +1,5 @@
 name:                cryptocompare
-version:             0.1.0
+version:             0.1.1
 synopsis:            Haskell wrapper for the cryptocompare API
 description:
     Haskell wrapper for the cryptocompare API, a source of information and pricing of different crypto-currencies.
diff --git a/test/Spec.hs b/test/Spec.hs
--- a/test/Spec.hs
+++ b/test/Spec.hs
@@ -2,7 +2,7 @@
 
 import           CryptoCompare
 import           Data.Either
-import           Data.Either.Utils
+import qualified Data.Either.Utils as U
 import           Test.Hspec
 
 main :: IO ()
@@ -11,7 +11,7 @@
     it "performs basic example fetches" $ do
   coinList <- fetchCoinList
   coinList `shouldSatisfy` isRight
-  fromRight coinList `shouldSatisfy` (\x -> length x > 1000)
+  U.fromRight coinList `shouldSatisfy` (\x -> length x > 1000)
   priceResp <- fetchCurrentPrice "BTC" ["USD", "EUR", "BTC"]
   priceResp `shouldSatisfy` isRight
   priceHistResp <- fetchDailyPriceHistory "BTC" "USD" 300
