Skip to content

Commit 454a163

Browse files
author
John Peacock
committed
Merge branch 'release/0.9924'
2 parents c521b57 + ec66f32 commit 454a163

File tree

16 files changed

+22
-17
lines changed

16 files changed

+22
-17
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This is not a complete list of changes. See repository for full details:
44

55
https://github.com/JohnPeacock/version.pm.git
66

7+
0.9924 - 2018-04-19
8+
* Revise CPAN metadata to advertise correct repo
9+
Patch from Ed <[email protected]>
10+
711
0.9923 - 2018-04-15
812
* Add back spaces for picky C++ compilers
913
Patch from Karl Williamson <[email protected]>

Makefile.PL

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ sub write_makefile
5252
'parent' => 0.221,
5353
);
5454

55-
WriteMakefile( VERSION => '0.9923',
55+
WriteMakefile( VERSION => '0.9924',
5656
NAME => 'version',
5757
LICENSE => 'perl',
5858
MIN_PERL_VERSION=> 5.006002,
@@ -95,8 +95,9 @@ sub write_makefile
9595
"meta-spec" => { version => 2 },
9696
resources => {
9797
repository => {
98-
type => 'hg',
99-
url => 'https://bitbucket.org/jpeacock/version'
98+
type => 'git',
99+
url => 'git://github.com/JohnPeacock/version.pm.git',
100+
web => 'http://github.com/JohnPeacock/version.pm',
100101
},
101102
bugtracker => {
102103
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version 0.9923
1+
version 0.9924
22
==================================
33

44
Object oriented versions for all Perl releases from 5.6.2 onward. Replaces

lib/version.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if ($] >= 5.015) {
88
warnings::register_categories(qw/version/);
99
}
1010

11-
our $VERSION = 0.9923;
11+
our $VERSION = 0.9924;
1212
our $CLASS = 'version';
1313
our (@ISA, $STRICT, $LAX);
1414

lib/version/regex.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version::regex;
22

33
use strict;
44

5-
our $VERSION = 0.9923;
5+
our $VERSION = 0.9924;
66

77
#--------------------------------------------------------------------------#
88
# Version regexp components

t/00impl-pp.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BEGIN {
1414
)
1515
);
1616
require $coretests;
17-
use_ok('version::vpp', 0.9923);
17+
use_ok('version::vpp', 0.9924);
1818
}
1919

2020
BaseTests("version::vpp","new","qv");

t/01base.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BEGIN {
1414
)
1515
);
1616
require $coretests;
17-
use_ok('version', 0.9923);
17+
use_ok('version', 0.9924);
1818
}
1919

2020
BaseTests("version","new","qv");

t/02derived.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BEGIN {
1515
)
1616
);
1717
require $coretests;
18-
use_ok("version", 0.9923);
18+
use_ok("version", 0.9924);
1919
# If we made it this far, we are ok.
2020
}
2121

t/03require.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ BEGIN {
1919
# Don't want to use, because we need to make sure that the import doesn't
2020
# fire just yet (some code does this to avoid importing qv() and delare()).
2121
require_ok("version");
22-
is $version::VERSION, 0.9923, "Make sure we have the correct class";
22+
is $version::VERSION, 0.9924, "Make sure we have the correct class";
2323
ok(!"main"->can("qv"), "We don't have the imported qv()");
2424
ok(!"main"->can("declare"), "We don't have the imported declare()");
2525

t/05sigdie.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BEGIN {
1414
}
1515

1616
BEGIN {
17-
use version 0.9923;
17+
use version 0.9924;
1818
}
1919

2020
pass "Didn't get caught by the wrong DIE handler, which is a good thing";

0 commit comments

Comments
 (0)