Skip to content

Commit 80fbcdd

Browse files
committed
Release 6.02
1 parent 8004e67 commit 80fbcdd

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

Changes

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
_______________________________________________________________________________
2+
2011-03-27 Release 6.02
3+
4+
This is the release where we try to help the CPAN-toolchain be able to install
5+
the modules required for https-support in LWP. We have done this by unbundling
6+
the LWP::Protocol::https module from the libwww-perl distribution. In order to
7+
have https support you now need to install (or depend on) 'LWP::Protocol::https'
8+
and then this will make sure that all the prerequsite modules comes along.
9+
See [RT#66838].
10+
11+
This release also removes the old http10 modules that has really been
12+
deprecated since v5.60. These should have been removed at the v6.00 jump, but
13+
I forgot.
14+
15+
16+
Christopher J. Madsen (1):
17+
Ignores env variables when ssl_opts provided [RT#66663]
18+
19+
Gisle Aas (4):
20+
Fix typo; Authen::NTLM [RT#66884]
21+
22+
Yury Zavarin (1):
23+
Support LWP::ConnCache->new(total_capacity => undef)
24+
25+
26+
127
_______________________________________________________________________________
228
2011-03-09 Release 6.01
329

lib/LWP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package LWP;
22

3-
$VERSION = "6.01";
3+
$VERSION = "6.02";
44
sub Version { $VERSION; }
55

66
require 5.008;

lib/LWP/ConnCache.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package LWP::ConnCache;
33
use strict;
44
use vars qw($VERSION $DEBUG);
55

6-
$VERSION = "6.00";
6+
$VERSION = "6.02";
77

88

99
sub new {

lib/LWP/UserAgent.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use vars qw(@ISA $VERSION);
55

66
require LWP::MemberMixin;
77
@ISA = qw(LWP::MemberMixin);
8-
$VERSION = "6.00";
8+
$VERSION = "6.02";
99

1010
use HTTP::Request ();
1111
use HTTP::Response ();

0 commit comments

Comments
 (0)