From 65befb84a0d33d5dd4533cb5aea34cbbeffabfa0 Mon Sep 17 00:00:00 2001 From: tokuhirom Date: Sun, 12 Sep 2010 00:11:31 +0900 Subject: [PATCH] Checking in changes prior to tagging of version 0.22. Changelog diff is: diff --git a/perl/Changes b/perl/Changes index 5d5a5e2..dd47b98 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,3 +1,7 @@ +0.22 + + - fixed issue on ithreads(broken from 0.21) + 0.21 - doc enhancment --- perl/Changes | 4 ++++ perl/MANIFEST.SKIP | 1 + perl/lib/Data/MessagePack.pm | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/perl/Changes b/perl/Changes index 5d5a5e21..dd47b988 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,3 +1,7 @@ +0.22 + + - fixed issue on ithreads(broken from 0.21) + 0.21 - doc enhancment diff --git a/perl/MANIFEST.SKIP b/perl/MANIFEST.SKIP index 71a24e5c..372742ca 100644 --- a/perl/MANIFEST.SKIP +++ b/perl/MANIFEST.SKIP @@ -25,3 +25,4 @@ ^Data-MessagePack-[0-9.]+/ ^\.testenv/test_pp.pl ^ppport.h$ +^xshelper.h$ diff --git a/perl/lib/Data/MessagePack.pm b/perl/lib/Data/MessagePack.pm index 197d7445..516e98b2 100644 --- a/perl/lib/Data/MessagePack.pm +++ b/perl/lib/Data/MessagePack.pm @@ -3,7 +3,7 @@ use strict; use warnings; use 5.008001; -our $VERSION = '0.21'; +our $VERSION = '0.22'; our $PreferInteger = 0; our $true = do { bless \(my $dummy = 1), "Data::MessagePack::Boolean" };