Skip to content

Commit f3a2288

Browse files
author
John Peacock
committed
Merge branch 'release/0.9922'
2 parents f871aa1 + 9bcc392 commit f3a2288

20 files changed

+59
-52
lines changed

.gitignore

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

MANIFEST.SKIP

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.+\.bak
55
.+~
66
.+\.orig
7-
.hg
7+
.git
88
.shipit
99
tags
1010
Makefile$

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.9921',
55+
WriteMakefile( VERSION => '0.9922',
5656
NAME => 'version',
5757
LICENSE => 'perl',
5858
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
@@ -8,7 +8,7 @@ if ($] >= 5.015) {
88
warnings::register_categories(qw/version/);
99
}
1010

11-
our $VERSION = 0.9921;
11+
our $VERSION = 0.9922;
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.9921;
5+
our $VERSION = 0.9922;
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.9921);
17+
use_ok('version::vpp', 0.9922);
1818
}
1919

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

0 commit comments

Comments
 (0)