amqp 0.3.1 → 0.3.2
raw patch · 2 files changed
+9/−5 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Network/AMQP.hs +3/−2
- amqp.cabal +6/−3
Network/AMQP.hs view
@@ -936,9 +936,10 @@ properties)] ++ (if BL.length msg > 0 then do- --split into frames of maxFrameSize+ -- split into frames of maxFrameSize+ -- (need to substract 8 bytes to account for frame header and end-marker) map ContentBodyPayload- (splitLen msg (fromIntegral $ connMaxFrameSize $ connection chan)) + (splitLen msg $ (fromIntegral $ connMaxFrameSize $ connection chan) - 8) else [] ) writeFrames chan toWrite
amqp.cabal view
@@ -1,5 +1,5 @@ Name: amqp -Version: 0.3.1 +Version: 0.3.2 Synopsis: Client library for AMQP servers (currently only RabbitMQ) Description: Client library for AMQP servers (currently only RabbitMQ) License: BSD3 @@ -10,7 +10,8 @@ Maintainer: Holger Reinhardt <hreinhardt@gmail.com> Build-Type: Simple Homepage: https://github.com/hreinhardt/amqp -Cabal-Version: >=1.2 +bug-reports: https://github.com/hreinhardt/amqp/issues +Cabal-Version: >=1.6 Extra-source-files: examples/ExampleConsumer.hs, examples/ExampleProducer.hs @@ -18,7 +19,9 @@ Library Build-Depends: base >= 4 && < 5, binary, containers>=0.2, bytestring>=0.9, network>=2.2.3.1 - ghc-options: -O2 Exposed-modules: Network.AMQP, Network.AMQP.Types Other-modules: Network.AMQP.Generated, Network.AMQP.Helpers, Network.AMQP.Protocol +source-repository head + type: git + location: https://github.com/hreinhardt/amqp