From 9640e69ea20d3dbd395b5d7c2bc565f2c7858a49 Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Tue, 8 Jan 2019 14:46:12 -0500 Subject: increment $VERSION after 1.75 release --- Changes | 2 ++ lib/URI.pm | 2 +- lib/URI/IRI.pm | 2 +- lib/URI/QueryParam.pm | 2 +- lib/URI/Split.pm | 2 +- lib/URI/_foreign.pm | 2 +- lib/URI/_generic.pm | 2 +- lib/URI/_idna.pm | 2 +- lib/URI/_ldap.pm | 2 +- lib/URI/_login.pm | 2 +- lib/URI/_punycode.pm | 2 +- lib/URI/_query.pm | 2 +- lib/URI/_segment.pm | 2 +- lib/URI/_server.pm | 2 +- lib/URI/_userpass.pm | 2 +- lib/URI/data.pm | 2 +- lib/URI/file/Base.pm | 2 +- lib/URI/file/FAT.pm | 2 +- lib/URI/file/Mac.pm | 2 +- lib/URI/file/OS2.pm | 2 +- lib/URI/file/QNX.pm | 2 +- lib/URI/file/Unix.pm | 2 +- lib/URI/file/Win32.pm | 2 +- lib/URI/ftp.pm | 2 +- lib/URI/gopher.pm | 2 +- lib/URI/http.pm | 2 +- lib/URI/https.pm | 2 +- lib/URI/ldap.pm | 2 +- lib/URI/ldapi.pm | 2 +- lib/URI/ldaps.pm | 2 +- lib/URI/mailto.pm | 2 +- lib/URI/mms.pm | 2 +- lib/URI/news.pm | 2 +- lib/URI/nntp.pm | 2 +- lib/URI/pop.pm | 2 +- lib/URI/rlogin.pm | 2 +- lib/URI/rsync.pm | 2 +- lib/URI/rtsp.pm | 2 +- lib/URI/rtspu.pm | 2 +- lib/URI/sftp.pm | 2 +- lib/URI/sip.pm | 2 +- lib/URI/sips.pm | 2 +- lib/URI/snews.pm | 2 +- lib/URI/ssh.pm | 2 +- lib/URI/telnet.pm | 2 +- lib/URI/tn3270.pm | 2 +- lib/URI/urn.pm | 2 +- lib/URI/urn/isbn.pm | 2 +- lib/URI/urn/oid.pm | 2 +- 49 files changed, 50 insertions(+), 48 deletions(-) diff --git a/Changes b/Changes index 4d455f8..403c2f0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for URI +{{$NEXT}} + 1.75 2019-01-08 19:45:38Z - $uri->canonical unconditionally returns a clone (GH#58) (Dorian Taylor) diff --git a/lib/URI.pm b/lib/URI.pm index bd030e1..031699b 100644 --- a/lib/URI.pm +++ b/lib/URI.pm @@ -3,7 +3,7 @@ package URI; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; our ($ABS_REMOTE_LEADING_DOTS, $ABS_ALLOW_RELATIVE_SCHEME, $DEFAULT_QUERY_FORM_DELIMITER); diff --git a/lib/URI/IRI.pm b/lib/URI/IRI.pm index 91fb451..edb1045 100644 --- a/lib/URI/IRI.pm +++ b/lib/URI/IRI.pm @@ -8,7 +8,7 @@ use URI (); use overload '""' => sub { shift->as_string }; -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub new { my($class, $uri, $scheme) = @_; diff --git a/lib/URI/QueryParam.pm b/lib/URI/QueryParam.pm index 30d7dd3..16eed98 100644 --- a/lib/URI/QueryParam.pm +++ b/lib/URI/QueryParam.pm @@ -3,7 +3,7 @@ package URI::QueryParam; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub URI::_query::query_param { my $self = shift; diff --git a/lib/URI/Split.pm b/lib/URI/Split.pm index 116cabd..39b5bcf 100644 --- a/lib/URI/Split.pm +++ b/lib/URI/Split.pm @@ -3,7 +3,7 @@ package URI::Split; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use Exporter 5.57 'import'; our @EXPORT_OK = qw(uri_split uri_join); diff --git a/lib/URI/_foreign.pm b/lib/URI/_foreign.pm index 27a184c..d556c85 100644 --- a/lib/URI/_foreign.pm +++ b/lib/URI/_foreign.pm @@ -5,6 +5,6 @@ use warnings; use parent 'URI::_generic'; -our $VERSION = '1.75'; +our $VERSION = '1.76'; 1; diff --git a/lib/URI/_generic.pm b/lib/URI/_generic.pm index 4885415..0da8f72 100644 --- a/lib/URI/_generic.pm +++ b/lib/URI/_generic.pm @@ -8,7 +8,7 @@ use parent qw(URI URI::_query); use URI::Escape qw(uri_unescape); use Carp (); -our $VERSION = '1.75'; +our $VERSION = '1.76'; my $ACHAR = $URI::uric; $ACHAR =~ s,\\[/?],,g; my $PCHAR = $URI::uric; $PCHAR =~ s,\\[?],,g; diff --git a/lib/URI/_idna.pm b/lib/URI/_idna.pm index fad96a7..8392e10 100644 --- a/lib/URI/_idna.pm +++ b/lib/URI/_idna.pm @@ -9,7 +9,7 @@ use warnings; use URI::_punycode qw(encode_punycode decode_punycode); use Carp qw(croak); -our $VERSION = '1.75'; +our $VERSION = '1.76'; BEGIN { *URI::_idna::_ENV_::JOIN_LEAKS_UTF8_FLAGS = "$]" < 5.008_003 diff --git a/lib/URI/_ldap.pm b/lib/URI/_ldap.pm index 8d7fb64..5057c37 100644 --- a/lib/URI/_ldap.pm +++ b/lib/URI/_ldap.pm @@ -7,7 +7,7 @@ package URI::_ldap; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use URI::Escape qw(uri_unescape); diff --git a/lib/URI/_login.pm b/lib/URI/_login.pm index e1284e9..7c3e5a1 100644 --- a/lib/URI/_login.pm +++ b/lib/URI/_login.pm @@ -5,7 +5,7 @@ use warnings; use parent qw(URI::_server URI::_userpass); -our $VERSION = '1.75'; +our $VERSION = '1.76'; # Generic terminal logins. This is used as a base class for 'telnet', # 'tn3270', and 'rlogin' URL schemes. diff --git a/lib/URI/_punycode.pm b/lib/URI/_punycode.pm index e6a4f95..405acc2 100644 --- a/lib/URI/_punycode.pm +++ b/lib/URI/_punycode.pm @@ -3,7 +3,7 @@ package URI::_punycode; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use Exporter 'import'; our @EXPORT = qw(encode_punycode decode_punycode); diff --git a/lib/URI/_query.pm b/lib/URI/_query.pm index 1cf5683..d9dde13 100644 --- a/lib/URI/_query.pm +++ b/lib/URI/_query.pm @@ -6,7 +6,7 @@ use warnings; use URI (); use URI::Escape qw(uri_unescape); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub query { diff --git a/lib/URI/_segment.pm b/lib/URI/_segment.pm index 3f11dab..01f207f 100644 --- a/lib/URI/_segment.pm +++ b/lib/URI/_segment.pm @@ -11,7 +11,7 @@ use URI::Escape qw(uri_unescape); use overload '""' => sub { $_[0]->[0] }, fallback => 1; -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub new { diff --git a/lib/URI/_server.pm b/lib/URI/_server.pm index 784a72c..5c32400 100644 --- a/lib/URI/_server.pm +++ b/lib/URI/_server.pm @@ -7,7 +7,7 @@ use parent 'URI::_generic'; use URI::Escape qw(uri_unescape); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub _uric_escape { my($class, $str) = @_; diff --git a/lib/URI/_userpass.pm b/lib/URI/_userpass.pm index 0bcb43f..b57fb2a 100644 --- a/lib/URI/_userpass.pm +++ b/lib/URI/_userpass.pm @@ -5,7 +5,7 @@ use warnings; use URI::Escape qw(uri_unescape); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub user { diff --git a/lib/URI/data.pm b/lib/URI/data.pm index 242b626..b21b5a3 100644 --- a/lib/URI/data.pm +++ b/lib/URI/data.pm @@ -5,7 +5,7 @@ use warnings; use parent 'URI'; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use MIME::Base64 qw(encode_base64 decode_base64); use URI::Escape qw(uri_unescape); diff --git a/lib/URI/file/Base.pm b/lib/URI/file/Base.pm index f8a80bb..bddd78a 100644 --- a/lib/URI/file/Base.pm +++ b/lib/URI/file/Base.pm @@ -5,7 +5,7 @@ use warnings; use URI::Escape qw(); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub new { diff --git a/lib/URI/file/FAT.pm b/lib/URI/file/FAT.pm index 0631996..78ed780 100644 --- a/lib/URI/file/FAT.pm +++ b/lib/URI/file/FAT.pm @@ -5,7 +5,7 @@ use warnings; use parent 'URI::file::Win32'; -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub fix_path { diff --git a/lib/URI/file/Mac.pm b/lib/URI/file/Mac.pm index c1dc9f6..155d618 100644 --- a/lib/URI/file/Mac.pm +++ b/lib/URI/file/Mac.pm @@ -7,7 +7,7 @@ use parent 'URI::file::Base'; use URI::Escape qw(uri_unescape); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub _file_extract_path { diff --git a/lib/URI/file/OS2.pm b/lib/URI/file/OS2.pm index c654256..a3cbf98 100644 --- a/lib/URI/file/OS2.pm +++ b/lib/URI/file/OS2.pm @@ -5,7 +5,7 @@ use warnings; use parent 'URI::file::Win32'; -our $VERSION = '1.75'; +our $VERSION = '1.76'; # The Win32 version translates k:/foo to file://k:/foo (?!) # We add an empty host diff --git a/lib/URI/file/QNX.pm b/lib/URI/file/QNX.pm index c1f574e..995fd63 100644 --- a/lib/URI/file/QNX.pm +++ b/lib/URI/file/QNX.pm @@ -5,7 +5,7 @@ use warnings; use parent 'URI::file::Unix'; -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub _file_extract_path { diff --git a/lib/URI/file/Unix.pm b/lib/URI/file/Unix.pm index bc6860e..869e899 100644 --- a/lib/URI/file/Unix.pm +++ b/lib/URI/file/Unix.pm @@ -7,7 +7,7 @@ use parent 'URI::file::Base'; use URI::Escape qw(uri_unescape); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub _file_extract_path { diff --git a/lib/URI/file/Win32.pm b/lib/URI/file/Win32.pm index d859925..d4f1ecf 100644 --- a/lib/URI/file/Win32.pm +++ b/lib/URI/file/Win32.pm @@ -7,7 +7,7 @@ use parent 'URI::file::Base'; use URI::Escape qw(uri_unescape); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub _file_extract_authority { diff --git a/lib/URI/ftp.pm b/lib/URI/ftp.pm index 703c9f6..e2d1950 100644 --- a/lib/URI/ftp.pm +++ b/lib/URI/ftp.pm @@ -3,7 +3,7 @@ package URI::ftp; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent qw(URI::_server URI::_userpass); diff --git a/lib/URI/gopher.pm b/lib/URI/gopher.pm index d180d3c..00bc363 100644 --- a/lib/URI/gopher.pm +++ b/lib/URI/gopher.pm @@ -3,7 +3,7 @@ package URI::gopher; # , Dec 4, 1996 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_server'; diff --git a/lib/URI/http.pm b/lib/URI/http.pm index 5180e6e..1b02cac 100644 --- a/lib/URI/http.pm +++ b/lib/URI/http.pm @@ -3,7 +3,7 @@ package URI::http; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_server'; diff --git a/lib/URI/https.pm b/lib/URI/https.pm index 6a58eb3..f40636b 100644 --- a/lib/URI/https.pm +++ b/lib/URI/https.pm @@ -3,7 +3,7 @@ package URI::https; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::http'; diff --git a/lib/URI/ldap.pm b/lib/URI/ldap.pm index 21953be..813bff9 100644 --- a/lib/URI/ldap.pm +++ b/lib/URI/ldap.pm @@ -7,7 +7,7 @@ package URI::ldap; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent qw(URI::_ldap URI::_server); diff --git a/lib/URI/ldapi.pm b/lib/URI/ldapi.pm index 0941b82..b138c88 100644 --- a/lib/URI/ldapi.pm +++ b/lib/URI/ldapi.pm @@ -3,7 +3,7 @@ package URI::ldapi; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent qw(URI::_ldap URI::_generic); diff --git a/lib/URI/ldaps.pm b/lib/URI/ldaps.pm index cb60d53..02ad511 100644 --- a/lib/URI/ldaps.pm +++ b/lib/URI/ldaps.pm @@ -3,7 +3,7 @@ package URI::ldaps; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::ldap'; diff --git a/lib/URI/mailto.pm b/lib/URI/mailto.pm index d3009bb..300386e 100644 --- a/lib/URI/mailto.pm +++ b/lib/URI/mailto.pm @@ -3,7 +3,7 @@ package URI::mailto; # RFC 2368 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent qw(URI URI::_query); diff --git a/lib/URI/mms.pm b/lib/URI/mms.pm index b2d2698..3c0e44f 100644 --- a/lib/URI/mms.pm +++ b/lib/URI/mms.pm @@ -3,7 +3,7 @@ package URI::mms; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::http'; diff --git a/lib/URI/news.pm b/lib/URI/news.pm index 549650b..55dcf71 100644 --- a/lib/URI/news.pm +++ b/lib/URI/news.pm @@ -3,7 +3,7 @@ package URI::news; # draft-gilman-news-url-01 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_server'; diff --git a/lib/URI/nntp.pm b/lib/URI/nntp.pm index e4abbf7..80bd942 100644 --- a/lib/URI/nntp.pm +++ b/lib/URI/nntp.pm @@ -3,7 +3,7 @@ package URI::nntp; # draft-gilman-news-url-01 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::news'; diff --git a/lib/URI/pop.pm b/lib/URI/pop.pm index d650722..ba824c0 100644 --- a/lib/URI/pop.pm +++ b/lib/URI/pop.pm @@ -3,7 +3,7 @@ package URI::pop; # RFC 2384 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_server'; diff --git a/lib/URI/rlogin.pm b/lib/URI/rlogin.pm index fbff4db..9dd5667 100644 --- a/lib/URI/rlogin.pm +++ b/lib/URI/rlogin.pm @@ -3,7 +3,7 @@ package URI::rlogin; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_login'; diff --git a/lib/URI/rsync.pm b/lib/URI/rsync.pm index f13064b..fb6fc13 100644 --- a/lib/URI/rsync.pm +++ b/lib/URI/rsync.pm @@ -5,7 +5,7 @@ package URI::rsync; # http://rsync.samba.org/ use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent qw(URI::_server URI::_userpass); diff --git a/lib/URI/rtsp.pm b/lib/URI/rtsp.pm index 3bc5de3..b06193a 100644 --- a/lib/URI/rtsp.pm +++ b/lib/URI/rtsp.pm @@ -3,7 +3,7 @@ package URI::rtsp; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::http'; diff --git a/lib/URI/rtspu.pm b/lib/URI/rtspu.pm index 0f3dd30..8ed9707 100644 --- a/lib/URI/rtspu.pm +++ b/lib/URI/rtspu.pm @@ -3,7 +3,7 @@ package URI::rtspu; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::rtsp'; diff --git a/lib/URI/sftp.pm b/lib/URI/sftp.pm index dfc14e5..93ff152 100644 --- a/lib/URI/sftp.pm +++ b/lib/URI/sftp.pm @@ -5,6 +5,6 @@ use warnings; use parent 'URI::ssh'; -our $VERSION = '1.75'; +our $VERSION = '1.76'; 1; diff --git a/lib/URI/sip.pm b/lib/URI/sip.pm index 3468b96..d793a3f 100644 --- a/lib/URI/sip.pm +++ b/lib/URI/sip.pm @@ -14,7 +14,7 @@ use parent qw(URI::_server URI::_userpass); use URI::Escape qw(uri_unescape); -our $VERSION = '1.75'; +our $VERSION = '1.76'; sub default_port { 5060 } diff --git a/lib/URI/sips.pm b/lib/URI/sips.pm index 6a0ff43..4d5553b 100644 --- a/lib/URI/sips.pm +++ b/lib/URI/sips.pm @@ -3,7 +3,7 @@ package URI::sips; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::sip'; diff --git a/lib/URI/snews.pm b/lib/URI/snews.pm index fa44a41..9911046 100644 --- a/lib/URI/snews.pm +++ b/lib/URI/snews.pm @@ -3,7 +3,7 @@ package URI::snews; # draft-gilman-news-url-01 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::news'; diff --git a/lib/URI/ssh.pm b/lib/URI/ssh.pm index 3071a8e..c4848f0 100644 --- a/lib/URI/ssh.pm +++ b/lib/URI/ssh.pm @@ -3,7 +3,7 @@ package URI::ssh; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_login'; diff --git a/lib/URI/telnet.pm b/lib/URI/telnet.pm index a62b346..4d95a62 100644 --- a/lib/URI/telnet.pm +++ b/lib/URI/telnet.pm @@ -3,7 +3,7 @@ package URI::telnet; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_login'; diff --git a/lib/URI/tn3270.pm b/lib/URI/tn3270.pm index 54ecbaa..cdcabbd 100644 --- a/lib/URI/tn3270.pm +++ b/lib/URI/tn3270.pm @@ -3,7 +3,7 @@ package URI::tn3270; use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::_login'; diff --git a/lib/URI/urn.pm b/lib/URI/urn.pm index e75c47d..bca02cb 100644 --- a/lib/URI/urn.pm +++ b/lib/URI/urn.pm @@ -3,7 +3,7 @@ package URI::urn; # RFC 2141 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI'; diff --git a/lib/URI/urn/isbn.pm b/lib/URI/urn/isbn.pm index 97c2c7f..9246345 100644 --- a/lib/URI/urn/isbn.pm +++ b/lib/URI/urn/isbn.pm @@ -3,7 +3,7 @@ package URI::urn::isbn; # RFC 3187 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::urn'; diff --git a/lib/URI/urn/oid.pm b/lib/URI/urn/oid.pm index fb2d544..2a4a0f9 100644 --- a/lib/URI/urn/oid.pm +++ b/lib/URI/urn/oid.pm @@ -3,7 +3,7 @@ package URI::urn::oid; # RFC 2061 use strict; use warnings; -our $VERSION = '1.75'; +our $VERSION = '1.76'; use parent 'URI::urn'; -- cgit v1.2.1