packages feed

raven-haskell 0.1.0.0 → 0.1.0.1

raw patch · 2 files changed

+18/−8 lines, 2 filesdep −old-localedep ~bytestringdep ~randomdep ~timePVP ok

version bump matches the API change (PVP)

Dependencies removed: old-locale

Dependency ranges changed: bytestring, random, time

API changes (from Hackage documentation)

Files

raven-haskell.cabal view
@@ -1,5 +1,5 @@ name:                raven-haskell-version:             0.1.0.0+version:             0.1.0.1 synopsis:            Haskell client for Sentry logging service. -- description:          homepage:            https://bitbucket.org/dpwiz/raven-haskell@@ -24,10 +24,15 @@   -- other-modules:   build-depends:     base ==4.*,-    random, uuid,-    time, old-locale,-    aeson, bytestring, text, unordered-containers,-    http-conduit, network+    aeson,+    bytestring >= 0.10,+    http-conduit,+    network,+    random >= 1.0,+    text,+    time >= 1.5.0.1,+    unordered-containers,+    uuid  test-suite test   type: exitcode-stdio-1.0@@ -35,6 +40,12 @@   hs-source-dirs: test   build-depends:     base,+    aeson,+    bytestring,     hspec,     raven-haskell,-    bytestring, unordered-containers, aeson+    unordered-containers++source-repository head+  type:     git+  location: https://bitbucket.org/dpwiz/raven-haskell
src/System/Log/Raven.hs view
@@ -60,8 +60,7 @@ import Data.UUID (UUID) import System.Random (randomIO) import Data.Time.Clock (getCurrentTime)-import Data.Time.Format (formatTime)-import System.Locale (defaultTimeLocale)+import Data.Time.Format (formatTime, defaultTimeLocale) import System.IO (stderr, hPutStrLn) import qualified Control.Exception as E import qualified Data.HashMap.Strict as HM