Skip to content

Commit

Permalink
increment $VERSION after 5.26 release
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Feb 2, 2024
1 parent bb063bb commit a3bbbd8
Show file tree
Hide file tree
Showing 58 changed files with 59 additions and 57 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Revision history for URI

{{$NEXT}}

5.26 2024-02-02 19:04:40Z
- Add URI::geo (GH#141) (david-dick)

Expand Down
2 changes: 1 addition & 1 deletion lib/URI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

# 1=version 5.10 and earlier; 0=version 5.11 and later
use constant HAS_RESERVED_SQUARE_BRACKETS => $ENV{URI_HAS_RESERVED_SQUARE_BRACKETS} ? 1 : 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/Escape.pm
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ use Exporter 5.57 'import';
our %escapes;
our @EXPORT = qw(uri_escape uri_unescape uri_escape_utf8);
our @EXPORT_OK = qw(%escapes);
our $VERSION = '5.26';
our $VERSION = '5.27';

use Carp ();

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/Heuristic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ use warnings;

use Exporter 5.57 'import';
our @EXPORT_OK = qw(uf_uri uf_uristr uf_url uf_urlstr);
our $VERSION = '5.26';
our $VERSION = '5.27';

our ($MY_COUNTRY, $DEBUG);

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/IRI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use URI ();

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

our $VERSION = '5.26';
our $VERSION = '5.27';

sub new {
my($class, $uri, $scheme) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/QueryParam.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package URI::QueryParam;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

1;

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/Split.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::Split;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use Exporter 5.57 'import';
our @EXPORT_OK = qw(uri_split uri_join);
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/URL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use parent 'URI::WithBase';

our $VERSION = '5.26';
our $VERSION = '5.27';

# Provide as much as possible of the old URI::URL interface for backwards
# compatibility...
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/WithBase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use URI ();
use Scalar::Util qw(blessed);

our $VERSION = '5.26';
our $VERSION = '5.27';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_foreign.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ use warnings;

use parent 'URI::_generic';

our $VERSION = '5.26';
our $VERSION = '5.27';

1;
2 changes: 1 addition & 1 deletion lib/URI/_generic.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent qw(URI URI::_query);
use URI::Escape qw(uri_unescape);
use Carp ();

our $VERSION = '5.26';
our $VERSION = '5.27';

my $ACHAR = URI::HAS_RESERVED_SQUARE_BRACKETS ? $URI::uric : $URI::uric4host; $ACHAR =~ s,\\[/?],,g;
my $PCHAR = $URI::uric; $PCHAR =~ s,\\[?],,g;
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_idna.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use warnings;
use URI::_punycode qw(decode_punycode encode_punycode);
use Carp qw(croak);

our $VERSION = '5.26';
our $VERSION = '5.27';

BEGIN {
*URI::_idna::_ENV_::JOIN_LEAKS_UTF8_FLAGS = "$]" < 5.008_003
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_ldap.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package URI::_ldap;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use URI::Escape qw(uri_unescape);

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_login.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

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

our $VERSION = '5.26';
our $VERSION = '5.27';

# Generic terminal logins. This is used as a base class for 'telnet',
# 'tn3270', and 'rlogin' URL schemes.
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_punycode.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::_punycode;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use Exporter 'import';
our @EXPORT = qw(encode_punycode decode_punycode);
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_query.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use URI ();
use URI::Escape qw(uri_unescape);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub query
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_segment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use URI::Escape qw(uri_unescape);
use overload '""' => sub { $_[0]->[0] },
fallback => 1;

our $VERSION = '5.26';
our $VERSION = '5.27';

sub new
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_server.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use parent 'URI::_generic';

use URI::Escape qw(uri_unescape);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub _uric_escape {
my($class, $str) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/_userpass.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use URI::Escape qw(uri_unescape);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub user
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/data.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use parent 'URI';

our $VERSION = '5.26';
our $VERSION = '5.27';

use MIME::Base64 qw(decode_base64 encode_base64);
use URI::Escape qw(uri_unescape);
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;

use parent 'URI::_generic';
our $VERSION = '5.26';
our $VERSION = '5.27';

use URI::Escape qw(uri_unescape);

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

use URI::Escape ();

our $VERSION = '5.26';
our $VERSION = '5.27';

sub new
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file/FAT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

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

our $VERSION = '5.26';
our $VERSION = '5.27';

sub fix_path
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file/Mac.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use parent 'URI::file::Base';

use URI::Escape qw(uri_unescape);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub _file_extract_path
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file/OS2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

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

our $VERSION = '5.26';
our $VERSION = '5.27';

# The Win32 version translates k:/foo to file://k:/foo (?!)
# We add an empty host
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file/QNX.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;

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

our $VERSION = '5.26';
our $VERSION = '5.27';

sub _file_extract_path
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file/Unix.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use parent 'URI::file::Base';

use URI::Escape qw(uri_unescape);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub _file_extract_path
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/file/Win32.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use parent 'URI::file::Base';

use URI::Escape qw(uri_unescape);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub _file_extract_authority
{
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/ftp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::ftp;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/geo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use URI::Split qw( uri_split uri_join );

use base qw( URI );

our $VERSION = '5.26';
our $VERSION = '5.27';

sub _MINIMUM_LATITUDE { return -90 }
sub _MAXIMUM_LATITUDE { return 90 }
Expand Down
2 changes: 1 addition & 1 deletion lib/URI/gopher.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::gopher; # <draft-murali-url-gopher>, Dec 4, 1996
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::_server';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/http.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::http;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::_server';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/https.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::https;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::http';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/icap.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use base qw(URI::http);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub default_port { return 1344 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/icaps.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use base qw(URI::icap);

our $VERSION = '5.26';
our $VERSION = '5.27';

sub secure { return 1 }

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/ldap.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package URI::ldap;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/ldapi.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::ldapi;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/ldaps.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::ldaps;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::ldap';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/mailto.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::mailto; # RFC 2368
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent qw(URI URI::_query);

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/mms.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::mms;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::http';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/news.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::news; # draft-gilman-news-url-01
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::_server';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/nntp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::nntp; # draft-gilman-news-url-01
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::news';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/nntps.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::nntps;
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::nntp';

Expand Down
2 changes: 1 addition & 1 deletion lib/URI/pop.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package URI::pop; # RFC 2384
use strict;
use warnings;

our $VERSION = '5.26';
our $VERSION = '5.27';

use parent 'URI::_server';

Expand Down
Loading

0 comments on commit a3bbbd8

Please sign in to comment.