Update README.md

This commit is contained in:
Yuki Ito 2016-12-09 00:09:23 +09:00
parent 3616fd6596
commit 181c9de639

View File

@ -144,12 +144,23 @@ Opt = [{ext,{Packer,Unpacker}}],
{ok, {ref, Ref}} = msgpack:unpack(msgpack:pack({ref, Ref}, Opt), Opt). {ok, {ref, Ref}} = msgpack:unpack(msgpack:pack({ref, Ref}, Opt), Opt).
``` ```
## Misc
### Float type
The Float type of Message Pack represents IEEE 754 floating point number, so it includes Nan and Infinity.
In unpacking, msgpack-erlang returns `nan`, `positive_infinity` and `negative_infinity`.
## License ## License
Apache License 2.0 Apache License 2.0
# Release Notes # Release Notes
## 0.7.0
- Support `nan`, `positive_infinity` and `negative_infinity`
## 0.6.0 ## 0.6.0
- Support OTP 19.0 - Support OTP 19.0