packages feed

amqp 0.2.2 → 0.2.3

raw patch · 2 files changed

+5/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Network/AMQP.hs view
@@ -630,7 +630,10 @@     --spawn the connectionReceiver     forkIO $ CE.finally (connectionReceiver conn)              (do --this will be run when a connection gets killed (probably because of socket failure)-                sClose sock+            +                -- try closing socket+                CE.catch (sClose sock) (\(e::CE.SomeException) -> return ())+                                 -- mark as closed                 modifyMVar_ cClosed $ \x -> return $ Just $ maybe "closed" id x                 
amqp.cabal view
@@ -1,5 +1,5 @@ Name:                amqp
-Version:             0.2.2
+Version:             0.2.3
 Synopsis:            Client library for AMQP servers (currently only RabbitMQ)
 Description:         Client library for AMQP servers (currently only RabbitMQ)
 License:             BSD3