version bump

This commit is contained in:
Hideyuki Tanaka 2011-08-30 13:58:16 -07:00
parent d0d7b266bc
commit 3241ffd1b4
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,5 @@
Name: msgpack
Version: 0.6.1.1
Version: 0.6.1.2
Synopsis: A Haskell implementation of MessagePack
Description:
A Haskell implementation of MessagePack <http://msgpack.org/>
@ -21,11 +21,11 @@ Extra-source-files:
Library
Build-depends: base >=4 && <5,
transformers >= 0.2 && < 0.3,
mtl >= 2.0 && < 2.1,
bytestring >= 0.9 && < 0.10,
text >= 0.11 && < 0.12,
vector >= 0.7 && < 0.8,
attoparsec >= 0.8 && < 0.9,
vector >= 0.7 && < 0.10,
attoparsec >= 0.8 && < 0.10,
binary >= 0.5.0 && < 0.5.1,
data-binary-ieee754 >= 0.4 && < 0.5,
deepseq >= 1.1 && <1.2,

View File

@ -29,7 +29,6 @@ module Data.MessagePack.Object(
import Control.DeepSeq
import Control.Exception
import Control.Monad
import Control.Monad.Trans.Error ()
import qualified Data.Attoparsec as A
import qualified Data.ByteString as B
import qualified Data.ByteString.Lazy as BL