diff --git a/src/Data/TTN/Client/Decode.hs b/src/Data/TTN/Client/Decode.hs
--- a/src/Data/TTN/Client/Decode.hs
+++ b/src/Data/TTN/Client/Decode.hs
@@ -11,12 +11,12 @@
 
 import Data.Binary.Get
 import Data.Either
-import qualified Data.Cayene as CLPP
+import qualified Data.Cayenne as CLPP
 
 
 data Decoded =
     TempHumidity Float Float
-  | Cayene [CLPP.Reading]
+  | Cayenne [CLPP.Reading]
   deriving (Show, Eq, Ord)
 
 decodeUplink :: Event -> [Decoded]
@@ -45,7 +45,7 @@
 decodeCLPP :: ByteString -> Either String Decoded
 decodeCLPP x = case CLPP.decodeMany x of
   [] -> Left "no CLPP data decoded"
-  c  -> Right $ Cayene c
+  c  -> Right $ Cayenne c
 
 unbase64 :: Text -> ByteString
 unbase64 =
diff --git a/ttn-client.cabal b/ttn-client.cabal
--- a/ttn-client.cabal
+++ b/ttn-client.cabal
@@ -1,5 +1,5 @@
 name:                ttn-client
-version:             0.2.1.0
+version:             0.2.2.0
 synopsis:            TheThingsNetwork client
 description:         Connect to TTN MQTT API, receive and decode messages
 homepage:            https://github.com/sorki/ttn-client
