Add bugtracker to metadata. Prep for release
This commit is contained in:
parent
ef2401b092
commit
43d0bfc5d8
3 changed files with 9 additions and 1 deletions
3
Build.PL
3
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',
|
||||
},
|
||||
},
|
||||
},
|
||||
);
|
||||
|
|
5
Changes
5
Changes
|
@ -1,3 +1,8 @@
|
|||
2021-01-23 Dave Cross <dave@perlhacks.com>
|
||||
|
||||
* Version 1.0.3
|
||||
* Add bugtracker to metadata
|
||||
|
||||
2020-11-04 Dave Cross <dave@perlhacks.com>
|
||||
|
||||
* Version 1.0.2
|
||||
|
|
|
@ -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' );
|
||||
|
|
Loading…
Add table
Reference in a new issue