diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,9 +1,5 @@
 # speechmatics
 
-a client for the [speechmatics](https://app.speechmatics.com/api-details) api .
+a client api for speechmatics.
 
 with input an audio file and blocking untill we get a json transcription.
-
-
-Developed by [Daisee](https://www.daisee.com/), pull requests are accepted:
-https://bitbucket.org/daisee/speechmatics-api-client
diff --git a/speechmatics.cabal b/speechmatics.cabal
--- a/speechmatics.cabal
+++ b/speechmatics.cabal
@@ -2,17 +2,16 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 4bc71e263d2002b605c0009ece685cd69f43493ceabe7ba3da924eaaf3e2cb69
+-- hash: f064c70f8805662cb580ac9295e710e5488d0a00043850d0d7ff19a5727489cf
 
 name:           speechmatics
-version:        0.1.0.0
-synopsis:       Upload audio files to speechmatics to get a transcription
-description:    Please see the README on bitbucket <https://bitbucket.org/daisee/speechmatics-api-client/src/master/>
+version:        0.1.1.0
+synopsis:       Speechmatics api client
+description:    Upload audio files to speechmatics to get a transcription
 category:       API
-homepage:       https://bitbucket.org/daisee/speechmatics-api-client/
 author:         Jappie Klooster
 maintainer:     jappie.klooster@daisee.com
-copyright:      Daisee Pty Ltd
+copyright:      Daisee
 license:        BSD3
 license-file:   LICENSE
 build-type:     Simple
diff --git a/src/Speechmatics/Client.hs b/src/Speechmatics/Client.hs
--- a/src/Speechmatics/Client.hs
+++ b/src/Speechmatics/Client.hs
@@ -7,7 +7,8 @@
   AuthToken,
   UserID,
   ModelName,
-  LazyByteFile(..)
+  LazyByteFile(..),
+  Error(..)
 ) where
 
 import           Control.Concurrent         (threadDelay)
diff --git a/src/Speechmatics/JSON/PeekJob.hs b/src/Speechmatics/JSON/PeekJob.hs
--- a/src/Speechmatics/JSON/PeekJob.hs
+++ b/src/Speechmatics/JSON/PeekJob.hs
@@ -5,6 +5,7 @@
 {-# LANGUAGE TypeOperators       #-}
 {-# LANGUAGE DeriveGeneric       #-}
 
+-- | Generated from json response, now it's type safe, see the tests
 module Speechmatics.JSON.PeekJob where
 
 import           System.Exit        (exitFailure, exitSuccess)
diff --git a/src/Speechmatics/JSON/PostJob.hs b/src/Speechmatics/JSON/PostJob.hs
--- a/src/Speechmatics/JSON/PostJob.hs
+++ b/src/Speechmatics/JSON/PostJob.hs
@@ -5,6 +5,7 @@
 {-# LANGUAGE TypeOperators       #-}
 {-# LANGUAGE DeriveGeneric       #-}
 
+-- | Generated from json response, now it's type safe, see the tests
 module Speechmatics.JSON.PostJob where
 
 import           System.Exit        (exitFailure, exitSuccess)
