Skip to content

Commit 537b02f

Browse files
author
John Peacock
committed
flow: Merged <release> '0.9914' to <master> ('default').
2 parents 9f2344c + 183680e commit 537b02f

File tree

15 files changed

+19
-19
lines changed

15 files changed

+19
-19
lines changed

Makefile.PL

Lines changed: 1 addition & 1 deletion
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.9913_01',
55+
WriteMakefile( VERSION => '0.9914',
5656
NAME => 'version',
5757
LICENSE => 'perl',
5858
MIN_PERL_VERSION=> 5.006002,

README

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version 0.9913_01
1+
version 0.9914
22
==================================
33

44
Object oriented versions for all Perl releases from 5.6.2 onward. Replaces
@@ -27,6 +27,10 @@ There was a bug caused by objects serialized by YAML that will cause Perl
2727
replacement code will take effect and Perl will not crash.
2828

2929

30+
Major Changes in 0.9914 - 2016-02-18
31+
=========================================
32+
Release non-alpha version to CPAN
33+
3034
Major Changes in 0.9913_01 - 2016-02-17
3135
=========================================
3236
Apply one additional changeset from leont to handle magic v-strings

lib/version.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ if ($] >= 5.015) {
1010

1111
use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
1212

13-
$VERSION = '0.9913_01';
14-
$VERSION = eval $VERSION;
13+
$VERSION = 0.9914;
1514
$CLASS = 'version';
1615

1716
# !!!!Delete this next block completely when adding to Perl core!!!!

lib/version/regex.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ use strict;
44

55
use vars qw($VERSION $CLASS $STRICT $LAX);
66

7-
$VERSION = '0.9913_01';
8-
$VERSION = eval $VERSION;
7+
$VERSION = 0.9914;
98

109
#--------------------------------------------------------------------------#
1110
# Version regexp components

t/00impl-pp.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ BEGIN {
1212
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
1313
);
1414
require $coretests;
15-
use_ok('version::vpp', '0.991301');
15+
use_ok('version::vpp', 0.9914);
1616
}
1717

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

t/01base.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ BEGIN {
1212
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
1313
);
1414
require $coretests;
15-
use_ok('version', '0.991301');
15+
use_ok('version', 0.9914);
1616
}
1717

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

t/02derived.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ BEGIN {
1313
(File::Spec->splitpath($0))[0,1], 'coretests.pm'
1414
);
1515
require $coretests;
16-
use_ok("version", '0.991301');
16+
use_ok("version", 0.9914);
1717
# If we made it this far, we are ok.
1818
}
1919

t/03require.t

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

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.9913_01';
17+
use version 0.9914;
1818
}
1919

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

t/06noop.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Test::More qw/no_plan/;
88

99
BEGIN {
10-
use_ok('version', '0.991301');
10+
use_ok('version', 0.9914);
1111
}
1212

1313
my $v1 = version->new('1.2');

0 commit comments

Comments
 (0)