hslogger 1.2.8 → 1.2.9
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ System.Log: instance Bounded Priority
+ System.Log: instance Enum Priority
Files
- hslogger.cabal +1/−1
- src/System/Log.hs +1/−1
hslogger.cabal view
@@ -1,5 +1,5 @@ Name: hslogger-Version: 1.2.8+Version: 1.2.9 License: BSD3 Maintainer: John Goerzen <jgoerzen@complete.org> Author: John Goerzen
src/System/Log.hs view
@@ -44,7 +44,7 @@ | CRITICAL -- ^ Severe situations | ALERT -- ^ Take immediate action | EMERGENCY -- ^ System is unusable- deriving (Eq, Ord, Show, Read)+ deriving (Eq, Ord, Enum, Bounded, Show, Read) {- | Internal type of log records -}