Skip to content

Commit 0cf33f7

Browse files
author
Chris White
committed
Added GitHub link to meta-info [minor]
Also bumped version and set to prerelease (v0.600_0)
1 parent 3e920b8 commit 0cf33f7

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

Makefile.PL

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ WriteMakefile(
4444
LICENSE => 'mit',
4545

4646
EXE_FILES => [ 'bin/perlpp' ],
47+
4748
MIN_PERL_VERSION => '5.010',
4849
CONFIGURE_REQUIRES => {
49-
'ExtUtils::MakeMaker' => '0',
50+
'ExtUtils::MakeMaker' => '6.46',
5051
},
5152
BUILD_REQUIRES => {
5253
'App::FatPacker' => '0',
@@ -74,6 +75,18 @@ WriteMakefile(
7475
'Getopt::Long' => '2.5', # Per issue #17
7576
'Pod::Usage' => '0',
7677
},
78+
79+
META_MERGE => {
80+
'meta-spec' => { version => 2 },
81+
resources => {
82+
repository => {
83+
type => 'git',
84+
url => 'https://github.com/interpreters/perlpp.git',
85+
web => 'https://github.com/interpreters/perlpp',
86+
},
87+
},
88+
},
89+
7790
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
7891
clean => { FILES => 'Text-PerlPP-* fatlib' },
7992
);

lib/Text/PerlPP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package Text::PerlPP;
55

66
# Semantic versioning, packed per Perl rules. Must always be at least one
77
# digit left of the decimal, and six digits right of the decimal.
8-
our $VERSION = '0.500004';
8+
our $VERSION = '0.600_000';
99

1010
use 5.010001;
1111
use strict;

0 commit comments

Comments
 (0)