Skip to content

Commit

Permalink
increment $VERSION after 1.74 release
Browse files Browse the repository at this point in the history
  • Loading branch information
karenetheridge committed Apr 22, 2018
1 parent 98db32c commit 5ad7306
Show file tree
Hide file tree
Showing 49 changed files with 50 additions and 48 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}}

1.74 2018-04-22 12:30:44Z
- avoid 'uninitialized' warning in URI::File when host has no domain name
set (PR#53, thanks Shoichi Kaji!)
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 = '1.74';
our $VERSION = '1.75';

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

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 = '1.74';
our $VERSION = '1.75';

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 @@ -3,7 +3,7 @@ package URI::QueryParam;
use strict;
use warnings;

our $VERSION = '1.74';
our $VERSION = '1.75';

sub URI::_query::query_param {
my $self = shift;
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 = '1.74';
our $VERSION = '1.75';

use Exporter 5.57 'import';
our @EXPORT_OK = qw(uri_split uri_join);
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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

my $ACHAR = $URI::uric; $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(encode_punycode decode_punycode);
use Carp qw(croak);

our $VERSION = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

# 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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

use MIME::Base64 qw(encode_base64 decode_base64);
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 qw();

our $VERSION = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

# 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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

use parent 'URI::http';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

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 = '1.74';
our $VERSION = '1.75';

use parent 'URI::news';

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 = '1.74';
our $VERSION = '1.75';

use parent 'URI::_server';

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

our $VERSION = '1.74';
our $VERSION = '1.75';

use parent 'URI::_login';

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

our $VERSION = '1.74';
our $VERSION = '1.75';

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

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

our $VERSION = '1.74';
our $VERSION = '1.75';

use parent 'URI::http';

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

our $VERSION = '1.74';
our $VERSION = '1.75';

use parent 'URI::rtsp';

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

use parent 'URI::ssh';

our $VERSION = '1.74';
our $VERSION = '1.75';

1;
2 changes: 1 addition & 1 deletion lib/URI/sip.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use parent qw(URI::_server URI::_userpass);

use URI::Escape qw(uri_unescape);

our $VERSION = '1.74';
our $VERSION = '1.75';

sub default_port { 5060 }

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

our $VERSION = '1.74';
our $VERSION = '1.75';

use parent 'URI::sip';

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

our $VERSION = '1.74';
our $VERSION = '1.75';

use parent 'URI::news';

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

our $VERSION = '1.74';
our $VERSION = '1.75';

use parent 'URI::_login';

Expand Down
Loading

0 comments on commit 5ad7306

Please sign in to comment.