Perl: change for release Data-MessagePack-0.09

This commit is contained in:
tokuhirom 2010-01-04 12:10:46 +09:00
parent 9817e9b18d
commit 7873e41e00
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
0.09
- support NVTYPE=="long double" or IVTYPE=="long long" environment
(thanks to Jun Kuriyama++)
0.08
- fixed PVNV issue...

View File

@ -20,6 +20,6 @@
^\.git/
\.sw[pon]$
^\.gitignore$
ppport.h
\.o$
\.bs$
^Data-MessagePack-[0-9.]+/

View File

@ -4,7 +4,7 @@ use warnings;
use XSLoader;
use 5.008001;
our $VERSION = '0.08';
our $VERSION = '0.09';
our $PreferInteger = 0;
our $true = do { bless \(my $dummy = 1), "Data::MessagePack::Boolean" };
@ -44,6 +44,10 @@ Pack the string as int when the value looks like int(EXPERIMENTAL).
Tokuhiro Matsuno
=head1 THANKS TO
Jun Kuriyama
=head1 LICENSE
This library is free software; you can redistribute it and/or modify