diff --git a/haskell-ffprobe.cabal b/haskell-ffprobe.cabal
--- a/haskell-ffprobe.cabal
+++ b/haskell-ffprobe.cabal
@@ -1,11 +1,11 @@
 cabal-version: 2.2
 
--- This file has been generated from package.yaml by hpack version 0.36.0.
+-- This file has been generated from package.yaml by hpack version 0.38.1.
 --
 -- see: https://github.com/sol/hpack
 
 name:           haskell-ffprobe
-version:        0.1.0.1
+version:        0.1.0.2
 synopsis:       Haskell bindings for ffprobe
 description:    Use ffprobe data in Haskell. Checkout the README on GitHub for an example.
 category:       Bindings
@@ -51,10 +51,10 @@
   build-depends:
       aeson >=2.1.2.1 && <=2.2.3.0
     , base >=4.7 && <5
-    , bytestring >=0.11.5 && <0.12
+    , bytestring >=0.11.5 && <=0.12.2.0
     , process >=1.6.18 && <1.7
     , scientific >=0.3.7 && <=0.3.8.0
-    , text >=2.0.2 && <2.1
+    , text >=2.0.2 && <2.2
   default-language: Haskell2010
 
 test-suite haskell-ffprobe-test
@@ -81,7 +81,7 @@
   build-depends:
       aeson >=2.1.2.1 && <=2.2.3.0
     , base >=4.7 && <5
-    , bytestring >=0.11.5 && <0.12
+    , bytestring >=0.11.5 && <=0.12.2.0
     , haskell-ffprobe
     , hspec
     , hspec-expectations
diff --git a/src/FFProbe/Data/Stream.hs b/src/FFProbe/Data/Stream.hs
--- a/src/FFProbe/Data/Stream.hs
+++ b/src/FFProbe/Data/Stream.hs
@@ -33,7 +33,7 @@
     parseJSON (String "data") = return DataStream
     parseJSON (String "attachment") = return Attachment
     parseJSON (String s) = return $ Other (unpack s)
-    parseJSON x = return $ Other (show x)
+    parseJSON x = return $ Other (Prelude.show x)
 
 data StreamDisposition = StreamDisposition
     { isDefault :: Bool,
@@ -94,7 +94,7 @@
             parseDispositionValue :: Int -> Parser Bool
             parseDispositionValue 0 = return False
             parseDispositionValue 1 = return True
-            parseDispositionValue n = fail $ "Expected 0 or 1. Got " ++ show n
+            parseDispositionValue n = fail $ "Expected 0 or 1. Got " ++ Prelude.show n
 
 data Stream = Stream
     { index :: Integer,
