packages feed

torrent 10000.1.0 → 10000.1.1

raw patch · 3 files changed

+8/−2 lines, 3 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

CHANGELOG view
@@ -1,3 +1,9 @@+haskell-torrent (10000.1.1) unstable; urgency=medium++  * Fix build with pre-AMP base.++ -- Joey Hess <id@joeyh.name>  Sun, 19 Mar 2017 12:25:49 -0400+ haskell-torrent (10000.1.0) unstable; urgency=medium    * Don't crash when parsing a torrent with no announce value.
src/Data/Torrent.hs view
@@ -102,7 +102,7 @@  serializeTorrent :: Torrent -> BEncode serializeTorrent torrent = BDict $ Map.fromList $ catMaybes-	[ (\b -> ("announce", BString b)) <$> (tAnnounce torrent)+	[ fmap (\b -> ("announce", BString b)) (tAnnounce torrent) 	, Just ("comment", BString $ tComment torrent) 	, Just ("info", info) 	]
torrent.cabal view
@@ -1,5 +1,5 @@ Name: torrent-Version: 10000.1.0+Version: 10000.1.1 Cabal-Version: >= 1.6 Maintainer: Joey Hess <id@joeyh.name> Author: Lemmih <lemmih@gmail.com>