messagepack 0.2.0 → 0.2.1
raw patch · 4 files changed
+13/−8 lines, 4 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Data.MessagePack: ObjectInt :: Int -> Object
+ Data.MessagePack: ObjectInt :: Int64 -> Object
Files
- CHANGELOG +9/−5
- Data/MessagePack.hs +2/−2
- README.md +1/−0
- messagepack.cabal +1/−1
CHANGELOG view
@@ -1,10 +1,14 @@-2014-07-25 Rodrigo Setti <rodrigosetti@gmail.com>+2014-11-13 Rodrigo Setti <rodrigosetti@gmail.com> - * Initial version: Serialize instances tested for consistency.- * Missing: Extension types+ * Changes `ObjectInt` data from `Int` to `Int64`, so it can be possible+ to pack a 64bit int on a 32bit system. 2014-07-25 Rodrigo Setti <rodrigosetti@gmail.com> - * Fix a fatal bug: Data.MessagePack.Spec was not exposed, thus failing the- package installation.+ * Fix a fatal bug: Data.MessagePack.Spec was not exposed, thus failing the+ package installation. +2014-07-25 Rodrigo Setti <rodrigosetti@gmail.com>++ * Initial version: Serialize instances tested for consistency.+ * Missing: Extension types
Data/MessagePack.hs view
@@ -26,8 +26,8 @@ import qualified Data.ByteString as BS import qualified Data.Map as M -data Object = ObjectInt Int- | ObjectNil+data Object = ObjectNil+ | ObjectInt Int64 | ObjectBool Bool | ObjectFloat Float | ObjectDouble Double
README.md view
@@ -5,3 +5,4 @@ [Serialize](http://hackage.haskell.org/package/cereal) instance for [Message Pack](http://msgpack.org) Object. +For a for Message Pack RPC (remote procedure call) support library, check [messagepack-rpc](http://hackage.haskell.org/package/messagepack-rpc).
messagepack.cabal view
@@ -1,5 +1,5 @@ name : messagepack-version : 0.2.0+version : 0.2.1 synopsis : Serialize instance for Message Pack Object description : Serialize instance for Message Pack Object homepage : https://github.com/rodrigosetti/messagepack