Skip to content

Commit 3107e58

Browse files
committed
increment $VERSION after 5.07 release
1 parent 406143d commit 3107e58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+55
-53
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for URI
22

3+
{{$NEXT}}
4+
35
5.07 2021-01-29 22:52:20Z
46
- s/perl.com/example.com/ in examples and tests (GH#81) (Olaf Alders)
57

lib/URI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.07';
6+
our $VERSION = '5.08';
77

88
our ($ABS_REMOTE_LEADING_DOTS, $ABS_ALLOW_RELATIVE_SCHEME, $DEFAULT_QUERY_FORM_DELIMITER);
99

lib/URI/Escape.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ use Exporter 5.57 'import';
141141
our %escapes;
142142
our @EXPORT = qw(uri_escape uri_unescape uri_escape_utf8);
143143
our @EXPORT_OK = qw(%escapes);
144-
our $VERSION = '5.07';
144+
our $VERSION = '5.08';
145145

146146
use Carp ();
147147

lib/URI/Heuristic.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ use warnings;
9191

9292
use Exporter 5.57 'import';
9393
our @EXPORT_OK = qw(uf_uri uf_uristr uf_url uf_urlstr);
94-
our $VERSION = '5.07';
94+
our $VERSION = '5.08';
9595

9696
our ($MY_COUNTRY, $DEBUG);
9797

lib/URI/IRI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use URI ();
88

99
use overload '""' => sub { shift->as_string };
1010

11-
our $VERSION = '5.07';
11+
our $VERSION = '5.08';
1212

1313
sub new {
1414
my($class, $uri, $scheme) = @_;

lib/URI/QueryParam.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::QueryParam;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.07';
6+
our $VERSION = '5.08';
77

88
sub URI::_query::query_param {
99
my $self = shift;

lib/URI/Split.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::Split;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.07';
6+
our $VERSION = '5.08';
77

88
use Exporter 5.57 'import';
99
our @EXPORT_OK = qw(uri_split uri_join);

lib/URI/URL.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use parent 'URI::WithBase';
77

8-
our $VERSION = '5.07';
8+
our $VERSION = '5.08';
99

1010
# Provide as much as possible of the old URI::URL interface for backwards
1111
# compatibility...

lib/URI/WithBase.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use warnings;
66
use URI ();
77
use Scalar::Util qw(blessed);
88

9-
our $VERSION = '5.07';
9+
our $VERSION = '5.08';
1010

1111
use overload '""' => "as_string", fallback => 1;
1212

lib/URI/_foreign.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ use warnings;
55

66
use parent 'URI::_generic';
77

8-
our $VERSION = '5.07';
8+
our $VERSION = '5.08';
99

1010
1;

0 commit comments

Comments
 (0)