Tagged 0.99_02 tags/0-99_02 0-99_02
rkinyon [Fri, 28 Apr 2006 13:23:10 +0000 (13:23 +0000)]
Changes
MANIFEST
lib/DBM/Deep.pm

diff --git a/Changes b/Changes
index 2c47577..257d783 100644 (file)
--- 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
index b049317..4394039 100644 (file)
--- 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
index 395aefd..92f3053 100644 (file)
@@ -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 ();