ffeed 0.3.1 → 0.3.2
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- FriendFeed.Types.Import: instance [overlap ok] (JSON a) => Show a
+ FriendFeed.Types.Import: instance [overlap ok] JSON a => Show a
- FriendFeed.Monad: ffeedFromException :: (Exception e) => SomeException -> Maybe e
+ FriendFeed.Monad: ffeedFromException :: Exception e => SomeException -> Maybe e
- FriendFeed.Monad: ffeedToException :: (Exception e) => e -> SomeException
+ FriendFeed.Monad: ffeedToException :: Exception e => e -> SomeException
- FriendFeed.Monad: ffeedTranslate :: (JSON a) => FFm String -> FFm a
+ FriendFeed.Monad: ffeedTranslate :: JSON a => FFm String -> FFm a
- FriendFeed.Monad: ffeedTranslateLs :: (JSON a) => String -> FFm String -> FFm [a]
+ FriendFeed.Monad: ffeedTranslateLs :: JSON a => String -> FFm String -> FFm [a]
- FriendFeed.Monad: ffeedTranslateSub :: (JSON a) => String -> FFm String -> FFm a
+ FriendFeed.Monad: ffeedTranslateSub :: JSON a => String -> FFm String -> FFm a
- FriendFeed.Types.Import: readJSONs :: (JSON a) => JSValue -> Result [a]
+ FriendFeed.Types.Import: readJSONs :: JSON a => JSValue -> Result [a]
Files
- ffeed.cabal +2/−2
ffeed.cabal view
@@ -1,5 +1,5 @@ name: ffeed -version: 0.3.1 +version: 0.3.2 synopsis: Haskell binding to the FriendFeed API description: The hs-ffeed API binding lets you access friendfeed.com's @@ -45,7 +45,7 @@ if flag(old-base) Build-Depends: base < 3 else - Build-Depends: base > 3 + Build-Depends: base >= 4 executable main { build-depends: base