Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/e-travel/msgpack
Browse files Browse the repository at this point in the history
Conflicts:
	csharp/MsgPack/CompiledPacker.cs
  • Loading branch information
Javier Gonel committed Nov 30, 2011
2 parents dbd2085 + f3a40b1 commit c89e517
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion csharp/MsgPack/CompiledPacker.cs
Expand Up @@ -372,7 +372,7 @@ static MemberInfo[] LookupMembers (Type t)
BindingFlags baseFlags = BindingFlags.Instance | BindingFlags.Public;
List<MemberInfo> list = new List<MemberInfo> ();
list.AddRange (t.GetFields (baseFlags));
list.AddRange( t.GetProperties(baseFlags));
list.AddRange( t.GetProperties(baseFlags));
// TODO: Add NonSerialized Attribute Filter ?
return list.ToArray ();
}
Expand Down
6 changes: 3 additions & 3 deletions haskell/msgpack.cabal
@@ -1,5 +1,5 @@
Name: msgpack
Version: 0.6.1.2
Version: 0.6.1.3
Synopsis: A Haskell implementation of MessagePack
Description:
A Haskell implementation of MessagePack <http://msgpack.org/>
Expand Down Expand Up @@ -28,8 +28,8 @@ Library
attoparsec >= 0.8 && < 0.10,
binary >= 0.5.0 && < 0.5.1,
data-binary-ieee754 >= 0.4 && < 0.5,
deepseq >= 1.1 && <1.2,
template-haskell >= 2.4 && < 2.6
deepseq >= 1.1 && <1.3,
template-haskell >= 2.4 && < 2.7

Ghc-options: -Wall
Hs-source-dirs: src
Expand Down

0 comments on commit c89e517

Please sign in to comment.