summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTokuhiro Matsuno <tokuhirom@gmail.com>2009-07-30 16:52:13 +0900
committerTokuhiro Matsuno <tokuhirom@gmail.com>2009-07-30 16:52:13 +0900
commitda9b75f5533dd83efb8ba3e1fb388daf374ab18d (patch)
tree952483f397e48e37c8bbc3769edd57013f07670c
parentd3906bd1aba9996b548f49c35383c7099c64f09d (diff)
downloadmsgpack-python-da9b75f5533dd83efb8ba3e1fb388daf374ab18d.tar.gz
Checking in changes prior to tagging of version 0.08. Changelog diff is:
diff --git a/perl/Changes b/perl/Changes index 4e7f1d7..c6e370c 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,3 +1,7 @@ +0.08 + + - fixed PVNV issue... + 0.07 - do not use switch (SvTYPE(val)).
-rw-r--r--perl/Changes4
-rw-r--r--perl/MANIFEST.SKIP1
-rw-r--r--perl/lib/Data/MessagePack.pm2
3 files changed, 6 insertions, 1 deletions
diff --git a/perl/Changes b/perl/Changes
index 4e7f1d7..c6e370c 100644
--- a/perl/Changes
+++ b/perl/Changes
@@ -1,3 +1,7 @@
+0.08
+
+ - fixed PVNV issue...
+
0.07
- do not use switch (SvTYPE(val)).
diff --git a/perl/MANIFEST.SKIP b/perl/MANIFEST.SKIP
index 1b268ef..f524216 100644
--- a/perl/MANIFEST.SKIP
+++ b/perl/MANIFEST.SKIP
@@ -20,3 +20,4 @@
^\.git/
\.sw[pon]$
^\.gitignore$
+ppport.h
diff --git a/perl/lib/Data/MessagePack.pm b/perl/lib/Data/MessagePack.pm
index 38431eb..2ab33f1 100644
--- a/perl/lib/Data/MessagePack.pm
+++ b/perl/lib/Data/MessagePack.pm
@@ -4,7 +4,7 @@ use warnings;
use XSLoader;
use 5.008001;
-our $VERSION = '0.07';
+our $VERSION = '0.08';
our $PreferInteger = 0;
our $true = do { bless \(my $dummy = 1), "Data::MessagePack::Boolean" };