aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-03-22 16:13:38 +0200
committerSergey Poznyakoff <gray@gnu.org>2021-03-22 16:17:35 +0200
commit2c67059dbc50d136b2680150ed53b67e88208dd0 (patch)
tree10be46bf5bc529efe37ec19e55457a16806db569
parent05741119c2c6c5c7c8eb92205b76bad5da5ca6fa (diff)
downloadglacier-2c67059dbc50d136b2680150ed53b67e88208dd0.tar.gz
glacier-2c67059dbc50d136b2680150ed53b67e88208dd0.tar.bz2
Version 2.13v2.13
* lib/App/Glacier/Bre.pm: Add expicit DESTROY. * lib/App/Glacier/DB.pm: Likewise. * lib/App/Glacier/Signature.pm: Likewise. * lib/App/Glacier.pm: Version 2.13 * Changes: Update.
-rw-r--r--Changes6
-rw-r--r--lib/App/Glacier.pm2
-rw-r--r--lib/App/Glacier/Bre.pm2
-rw-r--r--lib/App/Glacier/DB.pm2
-rw-r--r--lib/App/Glacier/Signature.pm2
5 files changed, 12 insertions, 2 deletions
diff --git a/Changes b/Changes
index 53c08be..ecddf91 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,8 @@
-2.12 2021-01-12
+2.13 2021-03-22
+
+* Use explicit DESTROY with AUTOLOADs
+
+2.12 2021-02-12
* Change bugtracker address.
diff --git a/lib/App/Glacier.pm b/lib/App/Glacier.pm
index 1263e71..bb49cb1 100644
--- a/lib/App/Glacier.pm
+++ b/lib/App/Glacier.pm
@@ -8,7 +8,7 @@ use App::Glacier::Command;
use File::Basename;
use Carp;
-our $VERSION = '2.12';
+our $VERSION = '2.13';
my %comtab = (
diff --git a/lib/App/Glacier/Bre.pm b/lib/App/Glacier/Bre.pm
index cd9fb84..3be77e4 100644
--- a/lib/App/Glacier/Bre.pm
+++ b/lib/App/Glacier/Bre.pm
@@ -181,4 +181,6 @@ sub AUTOLOAD {
croak "unknown method $AUTOLOAD";
}
+sub DESTROY {}
+
1;
diff --git a/lib/App/Glacier/DB.pm b/lib/App/Glacier/DB.pm
index aec3e04..74ad665 100644
--- a/lib/App/Glacier/DB.pm
+++ b/lib/App/Glacier/DB.pm
@@ -127,4 +127,6 @@ sub AUTOLOAD {
$self->backend->${\$meth}(@_);
}
+sub DESTROY {}
+
1;
diff --git a/lib/App/Glacier/Signature.pm b/lib/App/Glacier/Signature.pm
index 10d0ea7..55d296b 100644
--- a/lib/App/Glacier/Signature.pm
+++ b/lib/App/Glacier/Signature.pm
@@ -21,4 +21,6 @@ sub AUTOLOAD {
$self->{_sig}->method(@_);
}
+sub DESTROY {}
+
1;

Return to:

Send suggestions and report system problems to the System administrator.