Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
Update README and increment version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Toralf Wittner committed Jan 16, 2012
1 parent 990cbb3 commit 9de0825
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -5,6 +5,9 @@ Current status


This software currently has *beta* status, i.e. it had seen limited testing. This software currently has *beta* status, i.e. it had seen limited testing.


Version 0.1.2 - Add 'sendMulti' and 'receiveMulti'. Rename 'SndMore' to
'SendMore'.

Version 0.1.1 - Include better error message when trying to build against Version 0.1.1 - Include better error message when trying to build against
invalid 0MQ version. invalid 0MQ version.


Expand Down
2 changes: 1 addition & 1 deletion src/System/ZMQ3.hs
Expand Up @@ -610,7 +610,7 @@ receive sock = bracket messageInit messageClose $ \m ->
size <- c_zmq_msg_size (msgPtr m) size <- c_zmq_msg_size (msgPtr m)
SB.packCStringLen (data_ptr, fromIntegral size) SB.packCStringLen (data_ptr, fromIntegral size)


-- Receive a multi-part message. -- | Receive a multi-part message.
-- This function collects all message parts send via 'sendMulti'. -- This function collects all message parts send via 'sendMulti'.
receiveMulti :: Receiver a => Socket a -> IO [SB.ByteString] receiveMulti :: Receiver a => Socket a -> IO [SB.ByteString]
receiveMulti sock = recvall [] receiveMulti sock = recvall []
Expand Down
2 changes: 1 addition & 1 deletion zeromq3-haskell.cabal
@@ -1,5 +1,5 @@
name: zeromq3-haskell name: zeromq3-haskell
version: 0.1.1 version: 0.1.2
synopsis: Bindings to ZeroMQ 3.x synopsis: Bindings to ZeroMQ 3.x
category: System, FFI category: System, FFI
license: MIT license: MIT
Expand Down

0 comments on commit 9de0825

Please sign in to comment.