From 43d0bfc5d8acb82a5df7a59152d163c52e71cddd Mon Sep 17 00:00:00 2001 From: Dave Cross Date: Sat, 23 Jan 2021 11:47:17 +0000 Subject: [PATCH] Add bugtracker to metadata. Prep for release --- Build.PL | 3 +++ Changes | 5 +++++ lib/Parse/RPM/Spec.pm | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Build.PL b/Build.PL index ba29675..487bf06 100644 --- a/Build.PL +++ b/Build.PL @@ -26,6 +26,9 @@ my $build = Module::Build->new( url => 'git://github.com/davorg/parse-rpm-spec.git', web => 'https://github.com/davorg/parse-rpm-spec', }, + bugtracker => { + web => 'https://github.com/davorg/parse-rpm-spec/issues', + }, }, }, ); diff --git a/Changes b/Changes index af2422a..d566588 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,8 @@ +2021-01-23 Dave Cross + + * Version 1.0.3 + * Add bugtracker to metadata + 2020-11-04 Dave Cross * Version 1.0.2 diff --git a/lib/Parse/RPM/Spec.pm b/lib/Parse/RPM/Spec.pm index 7c5b3a9..961219f 100644 --- a/lib/Parse/RPM/Spec.pm +++ b/lib/Parse/RPM/Spec.pm @@ -7,7 +7,7 @@ use warnings; use Carp; use Moose; -our $VERSION = 'v1.0.2'; +our $VERSION = 'v1.0.3'; has file => ( is => 'ro', isa => 'Str', required => 1 ); has name => ( is => 'rw', isa => 'Str' );