Skip to content

Commit 0607f9c

Browse files
author
John Peacock
committed
Prep for release to CPAN with new master repo
1 parent 454932a commit 0607f9c

File tree

19 files changed

+58
-46
lines changed

19 files changed

+58
-46
lines changed

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
!Build/
2+
.last_cover_stats
3+
/META.yml
4+
/META.json
5+
/MYMETA.*
6+
*.o
7+
*.pm.tdy
8+
*.bs
9+
*~
10+
11+
# Devel::Cover
12+
cover_db/
13+
14+
# Devel::NYTProf
15+
nytprof.out
16+
17+
# Dizt::Zilla
18+
/.build/
19+
20+
# Module::Build
21+
_build/
22+
Build
23+
Build.bat
24+
25+
# Module::Install
26+
inc/
27+
28+
# ExtUtils::MakeMaker
29+
/blib/
30+
/_eumm/
31+
/*.gz
32+
/Makefile
33+
/Makefile.old
34+
/MANIFEST.bak
35+
/pm_to_blib
36+
/*.zip

.hgflow

Lines changed: 0 additions & 7 deletions
This file was deleted.

.hgignore

Lines changed: 0 additions & 19 deletions
This file was deleted.

CHANGES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ Major changes for Perl module version
22

33
This is not a complete list of changes. See repository for full details:
44

5-
https://bitbucket.org/jpeacock/version (primary)
5+
https://github.com/JohnPeacock/version.pm.git
6+
7+
0.9922 - 2018-04-12
8+
* Switch master repo to github
69

710
0.9921 - 2018-04-11
811
* Silence overly compulsive GCC 7 warning

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ sub write_makefile
5151
'parent' => 0.221,
5252
);
5353

54-
WriteMakefile( VERSION => '0.9921',
54+
WriteMakefile( VERSION => '0.9922',
5555
NAME => 'version',
5656
LICENSE => 'perl',
5757
MIN_PERL_VERSION=> 5.006002,

README

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
version 0.9921
1+
version 0.9922
22
==================================
33

44
Object oriented versions for all Perl releases from 5.6.2 onward. Replaces
55
the core version code for all Perl releases from 5.10.0 onwards.
66

77
Although this code has been fully integrated into the latest Perl release
88
itself (e.g. bleadperl), the CPAN release is considered upstream. The source
9-
code itself is available from two mirrors:
9+
code itself is available from:
1010

11-
https://bitbucket.org/jpeacock/version (primary)
12-
https://github.com/JohnPeacock/version.git (secondary)
11+
https://github.com/JohnPeacock/version.pm.git
1312

1413
and a bug queue here:
1514

@@ -55,5 +54,5 @@ COPYRIGHT AND LICENCE
5554

5655
This module can be distributed under the same terms as Perl.
5756

58-
Copyright (C) 2004-2017 John Peacock
57+
Copyright (C) 2004-2018 John Peacock
5958

lib/version.pm

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

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

13-
$VERSION = 0.9921;
13+
$VERSION = 0.9922;
1414
$CLASS = 'version';
1515

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

lib/version/regex.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use vars qw(
88
$LAX_DECIMAL_VERSION $LAX_DOTTED_DECIMAL_VERSION
99
);
1010

11-
$VERSION = 0.9921;
11+
$VERSION = 0.9922;
1212

1313
#--------------------------------------------------------------------------#
1414
# 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.9921);
17+
use_ok('version::vpp', 0.9922);
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.9921);
17+
use_ok('version', 0.9922);
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.9921);
18+
use_ok("version", 0.9922);
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.9921, "Make sure we have the correct class";
22+
is $version::VERSION, 0.9922, "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.9921;
17+
use version 0.9922;
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.9921);
10+
use_ok('version', 0.9922);
1111
}
1212

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

t/07locale.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Test::More tests => 8;
1111
use Config;
1212

1313
BEGIN {
14-
use_ok('version', 0.9921);
14+
use_ok('version', 0.9922);
1515
}
1616

1717
SKIP: {

t/08_corelist.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#########################
66

77
use Test::More tests => 3;
8-
use_ok("version", 0.9921);
8+
use_ok("version", 0.9922);
99

1010
# do strict lax tests in a sub to isolate a package to test importing
1111
SKIP: {

t/09_list_util.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#########################
55

66
use strict;
7-
use_ok("version", 0.9921);
7+
use_ok("version", 0.9922);
88
use Test::More;
99

1010
BEGIN {

vperl/vpp.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ use warnings::register;
123123

124124
use Config;
125125
use vars qw($VERSION $CLASS @ISA $LAX $STRICT $WARN_CATEGORY);
126-
$VERSION = 0.9921;
126+
$VERSION = 0.9922;
127127
$CLASS = 'version::vpp';
128128
if ($] > 5.015) {
129129
warnings::register_categories(qw/version/);

vutil/lib/version/vxs.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use v5.10;
55
use strict;
66

77
use vars qw(@ISA $VERSION $CLASS );
8-
$VERSION = 0.9921;
8+
$VERSION = 0.9922;
99
$CLASS = 'version::vxs';
1010

1111
eval {

0 commit comments

Comments
 (0)