Start using an explicit value for $VERSION
authorrjray <devnull@localhost>
Wed, 2 Aug 2000 08:04:31 +0000 (08:04 +0000)
committerrjray <devnull@localhost>
Wed, 2 Aug 2000 08:04:31 +0000 (08:04 +0000)
CVS patchset: 3998
CVS date: 2000/08/02 08:04:31

Perl-RPM/RPM/Database.pm

index 9e67290..ab34730 100644 (file)
@@ -5,7 +5,7 @@
 #
 ###############################################################################
 #
-#   $Id: Database.pm,v 1.3 2000/06/22 08:42:00 rjray Exp $
+#   $Id: Database.pm,v 1.4 2000/08/02 08:04:31 rjray Exp $
 #
 #   Description:    The RPM::Database class provides access to the RPM database
 #                   as a tied hash, whose keys are taken as the names of
@@ -36,8 +36,8 @@ use subs qw(new);
 require RPM;
 require RPM::Header;
 
-$VERSION = $RPM::VERSION;
-$revision = do { my @r=(q$Revision: 1.3 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
+$VERSION = '0.27';
+$revision = do { my @r=(q$Revision: 1.4 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
 
 1;