packages feed

yesod-transloadit 0.4.1.0 → 0.4.2.0

raw patch · 3 files changed

+4/−6 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Yesod.Transloadit: instance Eq Key
- Yesod.Transloadit: instance Eq Secret
- Yesod.Transloadit: instance Eq Template
- Yesod.Transloadit: instance Show Key
- Yesod.Transloadit: instance Show Secret
- Yesod.Transloadit: instance Show StepResult
- Yesod.Transloadit: instance Show Template
- Yesod.Transloadit: instance Show TransloaditParams
- Yesod.Transloadit: instance Show TransloaditResponse
- Yesod.Transloadit: key :: Key -> Text
- Yesod.Transloadit: secret :: Secret -> ByteString
- Yesod.Transloadit: template :: Template -> Text
+ Yesod.Transloadit: [key] :: Key -> Text
+ Yesod.Transloadit: [secret] :: Secret -> ByteString
+ Yesod.Transloadit: [template] :: Template -> Text
+ Yesod.Transloadit: instance GHC.Classes.Eq Yesod.Transloadit.Key
+ Yesod.Transloadit: instance GHC.Classes.Eq Yesod.Transloadit.Secret
+ Yesod.Transloadit: instance GHC.Classes.Eq Yesod.Transloadit.Template
+ Yesod.Transloadit: instance GHC.Show.Show Yesod.Transloadit.Key
+ Yesod.Transloadit: instance GHC.Show.Show Yesod.Transloadit.Secret
+ Yesod.Transloadit: instance GHC.Show.Show Yesod.Transloadit.StepResult
+ Yesod.Transloadit: instance GHC.Show.Show Yesod.Transloadit.Template
+ Yesod.Transloadit: instance GHC.Show.Show Yesod.Transloadit.TransloaditParams
+ Yesod.Transloadit: instance GHC.Show.Show Yesod.Transloadit.TransloaditResponse

Files

src/Yesod/Transloadit.hs view
@@ -30,7 +30,9 @@     Template(..),     Secret(..),     TransloaditParams,-    Signature+    Signature,+    module Control.Lens,+    module Data.Time   ) where  import           Control.Applicative
test/Tests.hs view
@@ -6,12 +6,10 @@  module Main where -import           Control.Lens import           Data.Aeson import           Data.Map import           Data.Maybe import           Data.Text-import           Data.Time import           System.Locale import           Test.Hspec import           Yesod             hiding (Key, get)
yesod-transloadit.cabal view
@@ -1,5 +1,5 @@ name:                yesod-transloadit-version:             0.4.1.0+version:             0.4.2.0 synopsis:            Transloadit support for Yesod description:         Drop in Transloadit capabilites for Yesod web apps license:             MIT@@ -51,10 +51,8 @@                        hspec,                        yesod,                        yesod-form,-                       time,                        old-locale,                        text,-                       lens,                        aeson,                        containers