From 806bbea9bff973b0a515b7cc27cc851bd72c6f54 Mon Sep 17 00:00:00 2001 From: David Cantrell Date: Fri, 1 Sep 2023 19:32:52 +0100 Subject: [PATCH] Book-keeping for release --- Build.PL | 1 + Changes | 2 +- META.json | 15 +++++++++------ lib/DBM/Deep.pm | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) diff --git a/Build.PL b/Build.PL index fe4aa96..92871f4 100644 --- a/Build.PL +++ b/Build.PL @@ -75,6 +75,7 @@ my $build = Module::Build->subclass( meta_merge => { resources => { repository => 'https://github.com/DrHyde/perl-modules-DBM-Deep', + bugtracker => 'https://github.com/DrHyde/perl-modules-DBM-Deep/issues', } }, ); diff --git a/Changes b/Changes index f9a54ab..66a85b0 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for DBM::Deep (ordered by revision number). -2.0017 2023-XX-XX +2.0017 2023-09-01 - get rid of old perl4-style ' package separator and use :: instead for compatibility with perl 5.38 diff --git a/META.json b/META.json index 64c2fec..9e81d33 100644 --- a/META.json +++ b/META.json @@ -4,13 +4,13 @@ "unknown" ], "dynamic_config" : 1, - "generated_by" : "Module::Build version 0.4218", + "generated_by" : "Module::Build version 0.4234", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", - "version" : "2" + "version" : 2 }, "name" : "DBM-Deep", "no_index" : { @@ -47,7 +47,7 @@ "provides" : { "DBM::Deep" : { "file" : "lib/DBM/Deep.pm", - "version" : "2.0016" + "version" : "2.0017" }, "DBM::Deep::Array" : { "file" : "lib/DBM/Deep/Array.pm" @@ -127,13 +127,16 @@ }, "release_status" : "stable", "resources" : { + "bugtracker" : { + "web" : "https://github.com/DrHyde/perl-modules-DBM-Deep/issues" + }, "license" : [ "http://dev.perl.org/licenses/" ], "repository" : { - "url" : "https://github.com/robkinyon/dbm-deep" + "url" : "https://github.com/DrHyde/perl-modules-DBM-Deep" } }, - "version" : "2.0016", - "x_serialization_backend" : "JSON::PP version 2.27300" + "version" : "2.0017", + "x_serialization_backend" : "JSON::PP version 4.16" } diff --git a/lib/DBM/Deep.pm b/lib/DBM/Deep.pm index 8d50306..61ff547 100644 --- a/lib/DBM/Deep.pm +++ b/lib/DBM/Deep.pm @@ -6,7 +6,7 @@ use strict; use warnings FATAL => 'all'; no warnings 'recursion'; -our $VERSION = q(2.0016_001); +our $VERSION = q(2.0017); use Scalar::Util ();