Skip to content

Commit f06a2d7

Browse files
committed
Release 5.813
1 parent 587b43e commit f06a2d7

File tree

8 files changed

+28
-7
lines changed

8 files changed

+28
-7
lines changed

Changes

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
2008-06-17 Gisle Aas <[email protected]>
2+
3+
Release 5.813
4+
5+
Ville Skytta (3):
6+
RobotUA constructor ignores delay, use_sleep [RT#35456]
7+
Spelling fixes [RT#35457]
8+
Add HTTP::Response->filename [RT#35458]
9+
10+
Mark Stosberg (2):
11+
Better diagnostics when the HTML::TokeParser constructor fails [RT#35607]
12+
Multiple forms with same-named <select> parse wrongly [RT#35607]
13+
14+
Gisle Aas (1):
15+
Provide a progress method that does something that might be useful.
16+
17+
Spiros Denaxas (1):
18+
Documentation typo fix [RT#36132]
19+
20+
21+
122
2008-04-16 Gisle Aas <[email protected]>
223

324
Release 5.812

bin/lwp-download

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ unless (getopts('a', \%opt)) {
7373
my $url = URI->new(shift || usage());
7474
my $argfile = shift;
7575
usage() if defined($argfile) && !length($argfile);
76-
my $VERSION = "5.810";
76+
my $VERSION = "5.813";
7777

7878
my $ua = LWP::UserAgent->new(
7979
agent => "lwp-download/$VERSION ",

lib/HTML/Form.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use URI;
55
use Carp ();
66

77
use vars qw($VERSION);
8-
$VERSION = "5.811";
8+
$VERSION = "5.813";
99

1010
my %form_tags = map {$_ => 1} qw(input textarea button select option);
1111

lib/HTTP/Negotiate.pm

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

3-
$VERSION = "5.810";
3+
$VERSION = "5.813";
44
sub Version { $VERSION; }
55

66
require 5.002;

lib/HTTP/Response.pm

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

33
require HTTP::Message;
44
@ISA = qw(HTTP::Message);
5-
$VERSION = "5.811";
5+
$VERSION = "5.813";
66

77
use strict;
88
use HTTP::Status ();

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

66
require 5.005;

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 = "5.810";
5+
$VERSION = "5.813";
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 = "5.810";
8+
$VERSION = "5.813";
99

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

0 commit comments

Comments
 (0)