yesod-alerts 0.1.4.0 → 0.1.5.0
raw patch · 2 files changed
+9/−9 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- src/Yesod/Alert.hs +8/−8
- yesod-alerts.cabal +1/−1
src/Yesod/Alert.hs view
@@ -7,7 +7,7 @@ -- ... -- defaultLayout widget = do -- ...--- alerts <- getAlerts+-- alerts <- getAlerts -- ... -- @ --@@ -54,13 +54,13 @@ , AlertStatus(..) ) where -import Data.Maybe (fromMaybe)-import Data.Text-import Safe (readMay)-import Text.Blaze.Html.Renderer.Text-import Web.Alert-import Yesod.Core-import qualified Data.Text.Lazy as TL+import Data.Maybe (fromMaybe)+import Data.Text hiding (show)+import qualified Data.Text.Lazy as TL+import Safe (readMay)+import Text.Blaze.Html.Renderer.Text+import Web.Alert+import Yesod.Core -- | Set an 'Alert' setAlert :: MonadHandler m => Alert -> m ()
yesod-alerts.cabal view
@@ -1,5 +1,5 @@ name: yesod-alerts-version: 0.1.4.0+version: 0.1.5.0 synopsis: Alert messages for the Yesod framework description: Use the "alerts" package with the Yesod framework homepage: https://github.com/alx741/yesod-alerts#readme