Skip to content

Commit 1da804f

Browse files
committed
increment $VERSION after 5.30 release
1 parent 5403765 commit 1da804f

Some content is hidden

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

64 files changed

+65
-63
lines changed

Changes

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for URI
22

3+
{{$NEXT}}
4+
35
5.30 2024-10-08 21:18:35Z
46
- Add scp, ftps, ftpes, irc, ircs schemes (GH#16) (SineSwiper)
57

lib/URI.pm

+1-1
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.30';
6+
our $VERSION = '5.31';
77

88
# 1=version 5.10 and earlier; 0=version 5.11 and later
99
use constant HAS_RESERVED_SQUARE_BRACKETS => $ENV{URI_HAS_RESERVED_SQUARE_BRACKETS} ? 1 : 0;

lib/URI/Escape.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ use Exporter 5.57 'import';
148148
our %escapes;
149149
our @EXPORT = qw(uri_escape uri_unescape uri_escape_utf8);
150150
our @EXPORT_OK = qw(%escapes);
151-
our $VERSION = '5.30';
151+
our $VERSION = '5.31';
152152

153153
use Carp ();
154154

lib/URI/Heuristic.pm

+1-1
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.30';
94+
our $VERSION = '5.31';
9595

9696
our ($MY_COUNTRY, $DEBUG);
9797

lib/URI/IRI.pm

+1-1
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.30';
11+
our $VERSION = '5.31';
1212

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

lib/URI/QueryParam.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package URI::QueryParam;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '5.30';
5+
our $VERSION = '5.31';
66

77
1;
88

lib/URI/Split.pm

+1-1
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.30';
6+
our $VERSION = '5.31';
77

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

lib/URI/URL.pm

+1-1
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.30';
8+
our $VERSION = '5.31';
99

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

lib/URI/WithBase.pm

+1-1
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.30';
9+
our $VERSION = '5.31';
1010

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

lib/URI/_foreign.pm

+1-1
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.30';
8+
our $VERSION = '5.31';
99

1010
1;

lib/URI/_generic.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use parent qw(URI URI::_query);
88
use URI::Escape qw(uri_unescape);
99
use Carp ();
1010

11-
our $VERSION = '5.30';
11+
our $VERSION = '5.31';
1212

1313
my $ACHAR = URI::HAS_RESERVED_SQUARE_BRACKETS ? $URI::uric : $URI::uric4host; $ACHAR =~ s,\\[/?],,g;
1414
my $PCHAR = $URI::uric; $PCHAR =~ s,\\[?],,g;

lib/URI/_idna.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use warnings;
99
use URI::_punycode qw(decode_punycode encode_punycode);
1010
use Carp qw(croak);
1111

12-
our $VERSION = '5.30';
12+
our $VERSION = '5.31';
1313

1414
BEGIN {
1515
*URI::_idna::_ENV_::JOIN_LEAKS_UTF8_FLAGS = "$]" < 5.008_003

lib/URI/_ldap.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package URI::_ldap;
77
use strict;
88
use warnings;
99

10-
our $VERSION = '5.30';
10+
our $VERSION = '5.31';
1111

1212
use URI::Escape qw(uri_unescape);
1313

lib/URI/_login.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use parent qw(URI::_server URI::_userpass);
77

8-
our $VERSION = '5.30';
8+
our $VERSION = '5.31';
99

1010
# Generic terminal logins. This is used as a base class for 'telnet',
1111
# 'tn3270', and 'rlogin' URL schemes.

lib/URI/_punycode.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::_punycode;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use Exporter 'import';
99
our @EXPORT = qw(encode_punycode decode_punycode);

lib/URI/_query.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use URI ();
77
use URI::Escape qw(uri_unescape);
88
use Scalar::Util ();
99

10-
our $VERSION = '5.30';
10+
our $VERSION = '5.31';
1111

1212
sub query
1313
{

lib/URI/_segment.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use URI::Escape qw(uri_unescape);
1111
use overload '""' => sub { $_[0]->[0] },
1212
fallback => 1;
1313

14-
our $VERSION = '5.30';
14+
our $VERSION = '5.31';
1515

1616
sub new
1717
{

lib/URI/_server.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use parent 'URI::_generic';
77

88
use URI::Escape qw(uri_unescape);
99

10-
our $VERSION = '5.30';
10+
our $VERSION = '5.31';
1111

1212
sub _uric_escape {
1313
my($class, $str) = @_;

lib/URI/_userpass.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use URI::Escape qw(uri_unescape);
77

8-
our $VERSION = '5.30';
8+
our $VERSION = '5.31';
99

1010
sub user
1111
{

lib/URI/data.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use parent 'URI';
77

8-
our $VERSION = '5.30';
8+
our $VERSION = '5.31';
99

1010
use MIME::Base64 qw(decode_base64 encode_base64);
1111
use URI::Escape qw(uri_unescape);

lib/URI/file.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55

66
use parent 'URI::_generic';
7-
our $VERSION = '5.30';
7+
our $VERSION = '5.31';
88

99
use URI::Escape qw(uri_unescape);
1010

lib/URI/file/Base.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use URI::Escape ();
77

8-
our $VERSION = '5.30';
8+
our $VERSION = '5.31';
99

1010
sub new
1111
{

lib/URI/file/FAT.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use parent 'URI::file::Win32';
77

8-
our $VERSION = '5.30';
8+
our $VERSION = '5.31';
99

1010
sub fix_path
1111
{

lib/URI/file/Mac.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use parent 'URI::file::Base';
77

88
use URI::Escape qw(uri_unescape);
99

10-
our $VERSION = '5.30';
10+
our $VERSION = '5.31';
1111

1212
sub _file_extract_path
1313
{

lib/URI/file/OS2.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use parent 'URI::file::Win32';
77

8-
our $VERSION = '5.30';
8+
our $VERSION = '5.31';
99

1010
# The Win32 version translates k:/foo to file://k:/foo (?!)
1111
# We add an empty host

lib/URI/file/QNX.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55

66
use parent 'URI::file::Unix';
77

8-
our $VERSION = '5.30';
8+
our $VERSION = '5.31';
99

1010
sub _file_extract_path
1111
{

lib/URI/file/Unix.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use parent 'URI::file::Base';
77

88
use URI::Escape qw(uri_unescape);
99

10-
our $VERSION = '5.30';
10+
our $VERSION = '5.31';
1111

1212
sub _file_extract_path
1313
{

lib/URI/file/Win32.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use parent 'URI::file::Base';
77

88
use URI::Escape qw(uri_unescape);
99

10-
our $VERSION = '5.30';
10+
our $VERSION = '5.31';
1111

1212
sub _file_extract_authority
1313
{

lib/URI/ftp.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::ftp;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent qw(URI::_server URI::_userpass);
99

lib/URI/ftpes.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::ftpes;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::ftp';
99

lib/URI/ftps.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::ftps;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::ftp';
99

lib/URI/geo.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use URI::Split qw( uri_split uri_join );
88

99
use base qw( URI );
1010

11-
our $VERSION = '5.30';
11+
our $VERSION = '5.31';
1212

1313
sub _MINIMUM_LATITUDE { return -90 }
1414
sub _MAXIMUM_LATITUDE { return 90 }

lib/URI/gopher.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::gopher; # <draft-murali-url-gopher>, Dec 4, 1996
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::_server';
99

lib/URI/http.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::http;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::_server';
99

lib/URI/https.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::https;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::http';
99

lib/URI/icap.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
use base qw(URI::http);
66

7-
our $VERSION = '5.30';
7+
our $VERSION = '5.31';
88

99
sub default_port { return 1344 }
1010

lib/URI/icaps.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
use base qw(URI::icap);
66

7-
our $VERSION = '5.30';
7+
our $VERSION = '5.31';
88

99
sub secure { return 1 }
1010

lib/URI/irc.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::irc; # draft-butcher-irc-url-04
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::_login';
99

lib/URI/ircs.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::ircs;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::irc';
99

lib/URI/ldap.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package URI::ldap;
77
use strict;
88
use warnings;
99

10-
our $VERSION = '5.30';
10+
our $VERSION = '5.31';
1111

1212
use parent qw(URI::_ldap URI::_server);
1313

lib/URI/ldapi.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::ldapi;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent qw(URI::_ldap URI::_generic);
99

lib/URI/ldaps.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::ldaps;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::ldap';
99

lib/URI/mailto.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::mailto; # RFC 2368
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent qw(URI URI::_query);
99

lib/URI/mms.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package URI::mms;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '5.30';
6+
our $VERSION = '5.31';
77

88
use parent 'URI::http';
99

0 commit comments

Comments
 (0)