From: Rob Kinyon Date: Tue, 5 Jan 2010 01:41:02 +0000 (-0500) Subject: (RT #44981) Added VERSION to ::Array, ::Engine, and ::Hash X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=29460253533b4890344f08679ef361713588112e;p=dbsrgits%2FDBM-Deep.git (RT #44981) Added VERSION to ::Array, ::Engine, and ::Hash --- diff --git a/Changes b/Changes index f7a4dd0..b3991fb 100644 --- a/Changes +++ b/Changes @@ -9,6 +9,7 @@ Revision history for DBM::Deep. - Build.PL has been extended to support sqlite vs. mysql - Storage::DBI now detects between the two DBDs - (RT #51888) Applied POD patch (Thanks, FWIE!) + - (RT #44981) Added VERSION to ::Array, ::Engine, and ::Hash 1.0019_001 Dec 31 22:00:00 2009 EST (This is the first developer release for 1.0020.) diff --git a/lib/DBM/Deep/Array.pm b/lib/DBM/Deep/Array.pm index b4a4636..4b8a2cc 100644 --- a/lib/DBM/Deep/Array.pm +++ b/lib/DBM/Deep/Array.pm @@ -5,6 +5,8 @@ use 5.006_000; use strict; use warnings FATAL => 'all'; +our $VERSION = $DBM::Deep::VERSION; + # This is to allow DBM::Deep::Array to handle negative indices on # its own. Otherwise, Perl would intercept the call to negative # indices for us. This was causing bugs for negative index handling. diff --git a/lib/DBM/Deep/Engine.pm b/lib/DBM/Deep/Engine.pm index ad6bff4..1cd0362 100644 --- a/lib/DBM/Deep/Engine.pm +++ b/lib/DBM/Deep/Engine.pm @@ -5,6 +5,8 @@ use 5.006_000; use strict; use warnings FATAL => 'all'; +our $VERSION = $DBM::Deep::VERSION; + use DBM::Deep::Iterator (); # File-wide notes: diff --git a/lib/DBM/Deep/Hash.pm b/lib/DBM/Deep/Hash.pm index dafbe2f..c4ee232 100644 --- a/lib/DBM/Deep/Hash.pm +++ b/lib/DBM/Deep/Hash.pm @@ -5,6 +5,8 @@ use 5.006_000; use strict; use warnings FATAL => 'all'; +our $VERSION = $DBM::Deep::VERSION; + use base 'DBM::Deep'; sub _get_self {