From: Peter Rabbitson Date: Tue, 20 Mar 2012 09:51:22 +0000 (+0100) Subject: Release 0.02 X-Git-Tag: v0.02^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3c460c4161f68e8e9a9ceaaf5eb7bd2362a7be58;p=p5sagit%2FDevel-PeekPoke.git Release 0.02 --- diff --git a/Changes b/Changes index 50b15b0..37f0f15 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,12 @@ +0.02 2012-03-20 09:45 (UTC) + - Fix crashes when used in a threaded environment - Fix memory corruption issues by preempting perl garbage collection of the artificial string PV - Fix describe_bytestring to work correctly with large offsets on 32bit machines + 0.01 2011-08-31 11:10 (UTC) - initial release diff --git a/lib/Devel/PeekPoke.pm b/lib/Devel/PeekPoke.pm index cb034fc..56d7c12 100644 --- a/lib/Devel/PeekPoke.pm +++ b/lib/Devel/PeekPoke.pm @@ -2,7 +2,7 @@ package Devel::PeekPoke; use strict; use warnings; -our $VERSION = '0.01'; +our $VERSION = '0.02'; use Carp; use Devel::PeekPoke::Constants qw/PTR_SIZE PTR_PACK_TYPE BIG_ENDIAN/;