Stephen Albert
f795e5d568
Remove autotools instructions from README
2016-10-05 14:41:01 -04:00
Takatoshi Kondo
cd84d04860
Appended CHANGELOG. Updated version.
2016-06-25 13:38:39 +09:00
Takatoshi Kondo
31a06a0682
Removed obsolete APIs form v2.
...
Removed MSGPACK_DISABLE_LEGACY_CONVERT from v2. Those APIs are removed
from v2.
2016-03-25 09:16:27 +09:00
Takatoshi Kondo
72c7feb2c4
Merge pull request #449 from redboltz/update_version_2_0
...
Updated the version to 2.0.0.
2016-03-21 19:33:58 +09:00
Takatoshi Kondo
170d29a13c
Updated the version to 2.0.0.
...
It's not a release. Just inform that the master branch is for the
version 2.0.0.
2016-03-21 16:50:31 +09:00
Takatoshi Kondo
1bfcf55469
Replaced msgpack::unpacked with msgpack::object_handle.
...
msgpack::unpacked is a typedef of the msgpack::object_handle.
I recommend using msgpack::object_handle. It can be used not only
holding unpacked msgpack objects but also msgpack::objects that are
created by any types.
Replaced unpack() APIs in test codes and examples. They used to use old
APIs.
2016-03-21 15:22:50 +09:00
Takatoshi Kondo
8640754417
Release version 1.4.0.
...
Fixed markdown layouts.
2016-01-22 10:02:59 +09:00
Takatoshi Kondo
3c271892e3
Fixed #399
...
If MSGPACK_DISABLE_LEGACY_CONVERT is defined, msgpack::object::convert(T*) is removed.
Added MSGPACK_DISABLE_LEGACY_CONVERT to build system and documents.
Please define MSGPACK_DISABLE_LEGACY_CONVERT and update your code as follows:
Replace
int i;
obj.convert(&i); // Removed pointer version
with
int i;
obj.convert(i); // Reference version
2016-01-21 22:28:53 +09:00
Takatoshi Kondo
ba73841240
Added MSGPACK_DISABLE_LEGACY_NIL to build system and documents.
2016-01-21 20:47:16 +09:00
Takatoshi Kondo
ba15089d86
Version 1.3.0.
...
Updated the license from the license from the Apache License Version 2.0
to the Boost Software License, Version 1.0.
Removed unused files.
2015-11-21 12:41:46 +09:00
Takatoshi Kondo
8a17e7f647
Updated version in README.md
2015-09-04 19:36:46 +09:00
Takatoshi Kondo
d88d6c34b9
Supported appveyor.
2015-05-27 15:35:36 +09:00
Takatoshi Kondo
a277ea7c64
Updated version to 1.1.0. Updated CHANGELOG.md.
2015-04-03 15:28:05 +09:00
Takatoshi Kondo
616b1d8fb0
Updated the wiki URL.
2015-04-03 14:18:27 +09:00
Nobuyuki Kubota
5568abb6ab
verion 1.0.1
2015-03-22 11:49:09 -07:00
Nobuyuki Kubota
62be3f1212
version 1.0.0
2015-03-10 21:42:47 +09:00
Nobuyuki Kubota
07ddfa1430
Add a list of contributors in README.md and remove AUTHORS file
...
This commit also adds AUTHORS and ChangeLog to .gitignore.
ChangeLog is only used by autoconf/automake and it has a quite
strict format. Since msgpack-c's change log is now written in
Markdown, it's difficult to follow the ChangeLog format.
So, unlike README.md, bootstrap doesn't copy CHANGELOG.md
to ChangeLog.
2015-02-15 16:52:27 -08:00
Haneef Mubarak
c71ce9eb49
minor markdown error
2015-01-02 23:14:16 -08:00
Haneef Mubarak
abac9fe90a
add links to QUICKSTART
2015-01-02 22:31:59 -08:00
Haneef Mubarak
5798fa0e47
rewrite and cleanup README
2015-01-02 22:27:55 -08:00
Takatoshi Kondo
a9cf916b82
Solved conflicts on README.md.
2014-10-27 11:09:49 +09:00
Takatoshi Kondo
5c0f1db25c
Merge branch 'poc/0.6' of https://github.com/redboltz/msgpack-c into redboltz-poc/0.6
...
Conflicts:
.travis.yml
CMakeLists.txt
README.md
ci/build_autotools.sh
ci/build_cmake.sh
src/msgpack/object.hpp
src/msgpack/type/fixint.hpp
src/msgpack/type/int.hpp
src/msgpack/type/tr1/unordered_map.hpp
src/msgpack/type/tr1/unordered_set.hpp
test/msgpack_test.cpp
test/object.cc
2014-10-26 15:40:22 +09:00
Takatoshi Kondo
6896cc602f
Added travis-ci support.
2014-09-19 23:42:07 +09:00
Takatoshi Kondo
103a6c56e4
Added travis-ci support.
2014-09-08 16:38:44 +09:00
Takatoshi Kondo
dee68403df
Replaced obsolete interface with recommended one on the example code.
2014-08-08 12:13:34 +09:00
Takatoshi Kondo
5af6d36341
Added a link to wiki.
2014-08-04 16:39:17 +09:00
Takatoshi Kondo
59b111e026
Removed the contents in 'install from package' section. It is not supported for this branch.
...
Updated the description of the cmake.
2014-07-16 08:49:27 +09:00
Takatoshi Kondo
2a694f8c20
Fixed markdown format.
2014-07-16 08:26:36 +09:00
Takatoshi Kondo
bc33317b7e
Reorganized tree.
2014-07-07 16:31:29 +09:00
Takatoshi Kondo
a20594dfdc
Added line breaks.
2014-07-07 16:19:31 +09:00
Takatoshi Kondo
bff4cadeff
Added C++ separate version and C++11 description.
2014-07-07 16:19:31 +09:00
Takatoshi Kondo
c2ca709d68
Added header files that use c++11 variadic templates instead of ruby code generation.
...
When the compiler configured to support C++11 (e.g. CXXFLAG contains -std=c++11 is given),
those files are used.
Decoupled unpacker and msgpack_unpacker.
This modification introduced C++11 dependency such as nullptr and unique_ptr.
I will support C++11 and C++03, finally.
Decoupled msgpack.hpp and msgpack.h.
Decoupled sbuffer from msgpack_sbuffer.
Decoupled vrefbuffer from msgpack_vrefbuffer.
Decoupled zbuffer from msgpack_zbuffer.
Added some z_stream initialization.
Removed unpack macros.
Removed CTX_CAST and CTX_REFERENCED.
Embed ctx_ as a member variable (not a pointer).
Modified zone free using C++ way.
2014-07-07 16:16:29 +09:00
Nobuyuki Kubota
dbeb6e61c6
version 0.5.9
2014-07-02 18:44:07 +09:00
Takatoshi Kondo
643b0c9523
Supported shared library on cmake.
...
Updated the documentation.
2014-06-07 00:13:23 +09:00
Takatoshi Kondo
17b0753023
Fixed linking order.
2014-06-01 19:03:51 +00:00
Takatoshi Kondo
1dac3f890a
Fixed https://github.com/msgpack/msgpack-c/issues/82
2014-04-24 22:39:01 +00:00
Nobuyuki Kubota
4e0a6ae624
Fixed some URL syntaxes
2013-12-22 21:04:53 -08:00
Chris Laws
17aa517e41
Fix up README, include accurate instructions
2013-12-17 08:53:15 +10:30
Nobuyuki Kubota
be8e53163b
Updated wiki links and removed old message
2013-08-17 19:00:16 +09:00
Uli Köhler
680ddb1557
Add README syntax highlighting
2013-08-17 03:11:15 +02:00
grynko
90815f0d27
Update README.md
...
fix typos
2013-07-02 12:06:14 +03:00
FURUHASHI Sadayuki
b463d9b687
reorganized tree
2013-01-03 19:13:28 -08:00
FURUHASHI Sadayuki
06ebdbfd37
updated README.md
2013-01-03 19:04:51 -08:00
FURUHASHI Sadayuki
e5e2b9095c
updated README.md
2011-06-12 14:47:29 +09:00
Kazuki Ohta
177cc55ee5
s/msgpack.sourceforge.net/msgpack.org/
2011-06-12 14:44:57 +09:00
frsyuki
ab8e0c9e31
c,cpp: reforms source tree
2010-04-18 00:08:03 +09:00