Skip to content

Commit d750db2

Browse files
committed
releng work for CPAN release 0.17. also upgraded the bundled inc::Module::Install module to 1.01.
1 parent 454c9db commit d750db2

File tree

22 files changed

+124
-301
lines changed

22 files changed

+124
-301
lines changed

Changes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Changes for Test::Nginx
22

3+
0.17 - 2011-11-04
4+
* bugfix: do not strip trailing CRCF for response headers in Test::Nginx::Socket's response parser.
5+
* bugfix: fixed issues in Content-Length response header handling in case of pipelined reqeusts.
6+
* bugfix: fixed the pipelined_requests section support.
7+
* feature: added support for user file timestamp.
8+
39
0.16 - 2011-07-07
410
* fixed a bug that length(undef) produced lots of warnings on perl 5.10.x. thanks Guo Ying (shrimp).
511
* now we automatically retry connecting for 3 times (1 sec delay)

META.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build_requires:
77
configure_requires:
88
ExtUtils::MakeMaker: 6.42
99
distribution_type: module
10-
generated_by: 'Module::Install version 1.00'
10+
generated_by: 'Module::Install version 1.01'
1111
license: bsd
1212
meta-spec:
1313
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -36,4 +36,4 @@ requires:
3636
resources:
3737
license: http://opensource.org/licenses/bsd-license.php
3838
repository: http://github.com/agentzh/test-nginx
39-
version: 0.16
39+
version: 0.17

inc/Module/Install.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ BEGIN {
3131
# This is not enforced yet, but will be some time in the next few
3232
# releases once we can make sure it won't clash with custom
3333
# Module::Install extensions.
34-
$VERSION = '1.00';
34+
$VERSION = '1.01';
3535

3636
# Storage for the pseudo-singleton
3737
$MAIN = undef;
@@ -467,4 +467,4 @@ sub _CLASS ($) {
467467

468468
1;
469469

470-
# Copyright 2008 - 2010 Adam Kennedy.
470+
# Copyright 2008 - 2011 Adam Kennedy.

inc/Module/Install/AutoInstall.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Module::Install::Base ();
66

77
use vars qw{$VERSION @ISA $ISCORE};
88
BEGIN {
9-
$VERSION = '1.00';
9+
$VERSION = '1.01';
1010
@ISA = 'Module::Install::Base';
1111
$ISCORE = 1;
1212
}

inc/Module/Install/Base.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package Module::Install::Base;
44
use strict 'vars';
55
use vars qw{$VERSION};
66
BEGIN {
7-
$VERSION = '1.00';
7+
$VERSION = '1.01';
88
}
99

1010
# Suspend handler for "redefined" warnings

inc/Module/Install/Can.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use Module::Install::Base ();
99

1010
use vars qw{$VERSION @ISA $ISCORE};
1111
BEGIN {
12-
$VERSION = '1.00';
12+
$VERSION = '1.01';
1313
@ISA = 'Module::Install::Base';
1414
$ISCORE = 1;
1515
}

inc/Module/Install/Fetch.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Module::Install::Base ();
66

77
use vars qw{$VERSION @ISA $ISCORE};
88
BEGIN {
9-
$VERSION = '1.00';
9+
$VERSION = '1.01';
1010
@ISA = 'Module::Install::Base';
1111
$ISCORE = 1;
1212
}

inc/Module/Install/Include.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Module::Install::Base ();
66

77
use vars qw{$VERSION @ISA $ISCORE};
88
BEGIN {
9-
$VERSION = '1.00';
9+
$VERSION = '1.01';
1010
@ISA = 'Module::Install::Base';
1111
$ISCORE = 1;
1212
}

inc/Module/Install/Makefile.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use Fcntl qw/:flock :seek/;
88

99
use vars qw{$VERSION @ISA $ISCORE};
1010
BEGIN {
11-
$VERSION = '1.00';
11+
$VERSION = '1.01';
1212
@ISA = 'Module::Install::Base';
1313
$ISCORE = 1;
1414
}

inc/Module/Install/Metadata.pm

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Module::Install::Base ();
66

77
use vars qw{$VERSION @ISA $ISCORE};
88
BEGIN {
9-
$VERSION = '1.00';
9+
$VERSION = '1.01';
1010
@ISA = 'Module::Install::Base';
1111
$ISCORE = 1;
1212
}
@@ -515,6 +515,7 @@ sub __extract_license {
515515
'GNU Free Documentation license' => 'unrestricted', 1,
516516
'GNU Affero General Public License' => 'open_source', 1,
517517
'(?:Free)?BSD license' => 'bsd', 1,
518+
'Artistic license 2\.0' => 'artistic_2', 1,
518519
'Artistic license' => 'artistic', 1,
519520
'Apache (?:Software )?license' => 'apache', 1,
520521
'GPL' => 'gpl', 1,
@@ -550,9 +551,9 @@ sub license_from {
550551

551552
sub _extract_bugtracker {
552553
my @links = $_[0] =~ m#L<(
553-
\Qhttp://rt.cpan.org/\E[^>]+|
554-
\Qhttp://github.com/\E[\w_]+/[\w_]+/issues|
555-
\Qhttp://code.google.com/p/\E[\w_\-]+/issues/list
554+
https?\Q://rt.cpan.org/\E[^>]+|
555+
https?\Q://github.com/\E[\w_]+/[\w_]+/issues|
556+
https?\Q://code.google.com/p/\E[\w_\-]+/issues/list
556557
)>#gx;
557558
my %links;
558559
@links{@links}=();

0 commit comments

Comments
 (0)