From: rkinyon Date: Fri, 28 Apr 2006 13:23:10 +0000 (+0000) Subject: Tagged 0.99_02 X-Git-Tag: 0-99_02^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=417f9daf5d5f1ac198e96def0e1c1b225be2844b;hp=eff6a245e56d0baacaa24e1d49dbdc4f6de80335;p=dbsrgits%2FDBM-Deep.git Tagged 0.99_02 --- diff --git a/Changes b/Changes index 2c47577..257d783 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ Revision history for DBM::Deep. -0.99_01 ??? ?? ??;??:?? 2006 Pacific +0.99_02 Apr 28 05:00:00 2006 Pacific + - Added missing file to the MANIFEST + +0.99_01 Apr 27 18:00:00 2006 Pacific - Added explicit dependency on Perl 5.6.0 - Digest::MD5 requires 5.6.0 - Sub::Uplevel (dep of Test::Exception) requires 5.6.0 @@ -14,6 +17,7 @@ Revision history for DBM::Deep. - set_pack() and set_digest() have been removed. - Instead, you will now pass the appropriate values into new() - A pack_size parameter has been added to make 64-bit files easier + - Transactions now work 0.98 Feb 28 11:00:00 2006 Pacific - Added in patch by David Cantrell to allow use of DATA filehandle diff --git a/MANIFEST b/MANIFEST index b049317..4394039 100644 --- a/MANIFEST +++ b/MANIFEST @@ -9,6 +9,7 @@ lib/DBM/Deep/Engine.pm lib/DBM/Deep/File.pm lib/DBM/Deep/Array.pm lib/DBM/Deep/Hash.pm +t/common.pm t/01_basic.t t/02_hash.t t/03_bighash.t diff --git a/lib/DBM/Deep.pm b/lib/DBM/Deep.pm index 395aefd..92f3053 100644 --- a/lib/DBM/Deep.pm +++ b/lib/DBM/Deep.pm @@ -34,7 +34,7 @@ use 5.6.0; use strict; use warnings; -our $VERSION = q(0.99_01); +our $VERSION = q(0.99_02); use Fcntl qw( :DEFAULT :flock :seek ); use Digest::MD5 ();