Skip to content

Commit b76e2f5

Browse files
committed
Release 6.03
1 parent fb7a054 commit b76e2f5

File tree

5 files changed

+36
-4
lines changed

5 files changed

+36
-4
lines changed

Changes

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
_______________________________________________________________________________
2+
2011-10-15 Release 6.03
3+
4+
Ville Skyttä (7):
5+
Link updates.
6+
Attribute documentation wording improvements.
7+
Don't parse robots.txt response content unless it's textual.
8+
Decode robots.txt response content before attempting to parse it.
9+
RobotUA robots.txt response parsing cleanups.
10+
Don't parse HEAD of robots.txt responses.
11+
Request handler doc grammar fixes.
12+
13+
Gisle Aas (6):
14+
Pass on HTTP/1.0 if set as request protocol
15+
Remove outdated docs (not touched since 1996 :-)
16+
Merge pull request #22 from madsen/RT67947-verify_hostname
17+
PERL_LWP_ENV_PROXY tweaks
18+
lwp-request didn't respect -H Content-type [RT#70488]
19+
lwp-request -H didn't allow repeated headers
20+
21+
Christopher J. Madsen (2):
22+
verify_hostname defaults to 0 if ssl_opts provided [RT#67947]
23+
Test verify_hostname setting
24+
25+
Bryan Cardillo (1):
26+
Fix expect header support to work with content refs.
27+
28+
Moritz Onken (1):
29+
add PERL_LWP_ENV_PROXY env variable to enable env_proxy globally
30+
31+
32+
133
_______________________________________________________________________________
234
2011-03-27 Release 6.02
335

bin/lwp-request

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ $progname = $0;
184184
$progname =~ s,.*[\\/],,; # use basename only
185185
$progname =~ s/\.\w*$//; # strip extension, if any
186186

187-
$VERSION = "6.00";
187+
$VERSION = "6.03";
188188

189189

190190
require LWP;

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.02";
3+
$VERSION = "6.03";
44
sub Version { $VERSION; }
55

66
require 5.008;

lib/LWP/RobotUA.pm

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

33
require LWP::UserAgent;
44
@ISA = qw(LWP::UserAgent);
5-
$VERSION = "6.00";
5+
$VERSION = "6.03";
66

77
require WWW::RobotRules;
88
require HTTP::Request;

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.02";
8+
$VERSION = "6.03";
99

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

0 commit comments

Comments
 (0)