summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* python: vesion 0.1.50.1.5INADA Naoki2010-09-021-1/+1
|
* Add msgpack.version as version tuple.INADA Naoki2010-09-024-3/+14
|
* python: Add test for python3 and fix found problems.INADA Naoki2010-09-026-9/+266
|
* python: Fix Unpacker.feed doesn't accept bytes on Python3.INADA Naoki2010-09-021-3/+1
|
* Merge branch 'master' of github.com:msgpack/msgpackINADA Naoki2010-09-02170-3406/+8375
|\
| * Perl: 0.15tokuhirom2010-09-012-1/+6
| |
| * Perl: better argument validation(patch from dankogai)tokuhirom2010-08-312-3/+6
| |
| * fixes compatibility with Rubiniusfrsyuki2010-08-313-7/+20
| |
| * ruby: fixes compatibility with ruby-1.8.5frsyuki2010-08-315-23/+48
| |
| * ruby: converts encodings into UTF-8 on Ruby 1.9frsyuki2010-08-316-38/+141
| |
| * template: casts integer types explicitlyfrsyuki2010-08-311-22/+22
| |
| * cpp: version 0.5.4frsyuki2010-08-292-2/+7
| |
| * cpp: updates README.mdfrsyuki2010-08-293-38/+31
| |
| * cpp: adds msgpack_vc2008.vcproj file in source packagefrsyuki2010-08-294-3/+8
| |
| * Merge branch 'master' of github.com:msgpack/msgpackfrsyuki2010-08-285-13/+54
| |\
| | * Merge branch 'master' of ssh://github.com/msgpack/msgpackUENISHI Kota2010-08-2856-2763/+2091
| | |\
| | | * Perl: bump up version to 0.14tokuhirom2010-08-212-1/+6
| | | |
| | | * fixed segv on cyclic reference(patch by dankogai)tokuhirom2010-08-212-11/+42
| | | |
| | * | erlang: fixed bug around error case when serializing atom.UENISHI Kota2010-08-271-1/+6
| | | |
| * | | cpp: fixes fix_int; updates test/fixint.ccfrsyuki2010-08-272-1/+115
| | | |
| * | | cpp: version 0.5.3frsyuki2010-08-272-1/+8
| | | |
| * | | cpp: updates msgpack_vc8.postbuild.batfrsyuki2010-08-271-1/+2
| | | |
| * | | cpp: adds fixed length serialization for integersfrsyuki2010-08-278-2/+223
| | | |
| * | | cpp: fixes include pathsfrsyuki2010-08-2714-35/+38
| | |/ | |/|
| * | java: adds TestMessageUnpackable testfrsyuki2010-08-213-1/+85
| | |
| * | java: adds Unpacker.unpackBigInteger()frsyuki2010-08-193-4/+55
| | |
| * | java: NilType::create() returns NilType's one and only instancefrsyuki2010-08-193-6/+8
| | |
| * | java: updates TestDirectConversionfrsyuki2010-08-194-187/+298
| | |
| * | java: adds Packer.pack(<primitive types>)frsyuki2010-08-182-31/+82
| | |
| * | java: supports packing/unpacking of BigInteger less than 0xfffffffffffffffffrsyuki2010-08-184-14/+42
| | |
| * | java: fixes cross-language test casefrsyuki2010-08-181-8/+2
| | |
| * | java: adds cross-language test casefrsyuki2010-08-185-0/+48
| | |
| * | java: adds ObjectEquals testfrsyuki2010-08-189-22/+152
| | |
| * | java: uses MessagePackObject instead of Object for type of deserialized objectsfrsyuki2010-08-1831-2654/+280
| | |
| * | java: adds MessagePackObject.bigIntegerValue(), asBigInteger() and equals()frsyuki2010-08-185-0/+49
| | |
| * | java: implements MessagePackObject::hashCode()frsyuki2010-08-1010-0/+55
| | |
| * | java: fixes MapSchemafrsyuki2010-08-101-1/+1
| | |
| * | java: MessagePackObject implements Cloneable and MessagePackable interfacesfrsyuki2010-07-2812-4/+233
| | |
| * | java: changed deploy path to ./target/website/maven2 directory.frsyuki2010-07-271-4/+2
| | |
| * | java: fixed repository location. msgpack.sourceforge.net => msgpack.orgKazuki Ohta2010-07-271-14/+11
| | |
| * | java: adds MessagePackObject class 2frsyuki2010-07-248-11/+67
| | |
| * | Merge branch 'master' of github.com:msgpack/msgpackfrsyuki2010-07-244-70/+131
| |\ \ | | |/
| | * erlang: msgpack:unpack_all/1 doc.UENISHI Kota2010-07-181-0/+5
| | |
| | * erlang: omake menus added.UENISHI Kota2010-07-181-1/+4
| | |
| | * erlang: unpack_all/1 improve, error handling added.UENISHI Kota2010-07-181-5/+11
| | |
| | * erlang: stopped support for dict() type.UENISHI Kota2010-07-181-2/+0
| | |
| | * erlang: 'edoc' document generationUENISHI Kota2010-07-184-3/+11
| | |
| | * erlang: merged vincent's contributionUENISHI Kota2010-07-182-62/+103
| | |\
| | | * erlang: Improve documentationVincent de Phily2010-07-122-21/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The doc is in edoc format, generated from the source as an html file. The makefile's default action now also generates the documentation. I ignored unpack_all/1 and pack(dict()) for now because their future is still uncertain.
| | | * erlang: Only handle throw() in pack/1 and unpack/1Vincent de Phily2010-07-091-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rationale: We only use throw/1 for error handling, never erlang:error/1. Caller bugs will get a nice {error,...} return while library bugs will bubble up in all their uglyness; that's the proper way to do things in erlang.