packages feed

haskell-ffprobe 0.1.0.1 → 0.1.0.2

raw patch · 2 files changed

+7/−7 lines, 2 filesdep ~bytestringdep ~textPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: bytestring, text

API changes (from Hackage documentation)

- FFProbe: instance GHC.Generics.Generic FFProbe.FFProbeData
- FFProbe.Data.Stream: instance GHC.Show.Show FFProbe.Data.Stream.StreamType
- FFProbe.Data.Tags: instance GHC.Show.Show FFProbe.Data.Tags.TagValue
+ FFProbe: instance GHC.Internal.Generics.Generic FFProbe.FFProbeData
+ FFProbe.Data.Stream: instance GHC.Internal.Show.Show FFProbe.Data.Stream.StreamType
+ FFProbe.Data.Tags: instance GHC.Internal.Show.Show FFProbe.Data.Tags.TagValue

Files

haskell-ffprobe.cabal view
@@ -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
src/FFProbe/Data/Stream.hs view
@@ -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,