Skip to content

Commit

Permalink
increment $VERSION after 6.48 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Sep 20, 2020
1 parent 98d58fb commit 66e6639
Show file tree
Hide file tree
Showing 24 changed files with 25 additions and 23 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Change history for libwww-perl

{{$NEXT}}

6.48 2020-09-20 15:25:51Z
- Support 308 Permanent Redirect (GH#349) (Galen Huntington)

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package LWP;

our $VERSION = '6.48';
our $VERSION = '6.49';

require LWP::UserAgent; # this should load everything you need

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Authen/Basic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::Authen::Basic;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require Encode;
require MIME::Base64;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Authen/Digest.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package LWP::Authen::Digest;
use strict;
use base 'LWP::Authen::Basic';

our $VERSION = '6.48';
our $VERSION = '6.49';

require Digest::MD5;

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Authen/Ntlm.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::Authen::Ntlm;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

use Authen::NTLM "1.02";
use MIME::Base64 "2.12";
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/ConnCache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::ConnCache;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';
our $DEBUG;

sub new {
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Debug.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package LWP::Debug; # legacy

our $VERSION = '6.48';
our $VERSION = '6.49';

require Exporter;
our @ISA = qw(Exporter);
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Debug/TraceHTTP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package LWP::Debug::TraceHTTP;
use strict;
use base 'LWP::Protocol::http';

our $VERSION = '6.48';
our $VERSION = '6.49';

package # hide from PAUSE
LWP::Debug::TraceHTTP::Socket;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/DebugFile.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package LWP::DebugFile;

our $VERSION = '6.48';
our $VERSION = '6.49';

# legacy stub

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/MemberMixin.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package LWP::MemberMixin;

our $VERSION = '6.48';
our $VERSION = '6.49';

sub _elem {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::Protocol;

use base 'LWP::MemberMixin';

our $VERSION = '6.48';
our $VERSION = '6.49';

use strict;
use Carp ();
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/cpan.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;

use base qw(LWP::Protocol);

our $VERSION = '6.48';
our $VERSION = '6.49';

require URI;
require HTTP::Status;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/data.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package LWP::Protocol::data;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require HTTP::Response;
require HTTP::Status;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/file.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use base qw(LWP::Protocol);

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require LWP::MediaTypes;
require HTTP::Request;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/ftp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package LWP::Protocol::ftp;
use base qw(LWP::Protocol);
use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

use Carp ();
use HTTP::Status ();
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/gopher.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package LWP::Protocol::gopher;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require HTTP::Response;
require HTTP::Status;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/http.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::Protocol::http;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require HTTP::Response;
require HTTP::Status;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/loopback.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::Protocol::loopback;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require HTTP::Response;

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/mailto.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require HTTP::Status;
use Carp;
use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

use base qw(LWP::Protocol);
our $SENDMAIL;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/nntp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package LWP::Protocol::nntp;

use base qw(LWP::Protocol);

our $VERSION = '6.48';
our $VERSION = '6.49';

require HTTP::Response;
require HTTP::Status;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Protocol/nogo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package LWP::Protocol::nogo;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require HTTP::Response;
require HTTP::Status;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/RobotUA.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::RobotUA;

use base qw(LWP::UserAgent);

our $VERSION = '6.48';
our $VERSION = '6.49';

require WWW::RobotRules;
require HTTP::Request;
Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/Simple.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package LWP::Simple;

use strict;

our $VERSION = '6.48';
our $VERSION = '6.49';

require Exporter;

Expand Down
2 changes: 1 addition & 1 deletion lib/LWP/UserAgent.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use LWP::Protocol ();
use Scalar::Util qw(blessed);
use Try::Tiny qw(try catch);

our $VERSION = '6.48';
our $VERSION = '6.49';

sub new
{
Expand Down

0 comments on commit 66e6639

Please sign in to comment.