From 72a9be7c6d29a6b807fa0a726429e9ca8c93c184 Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Thu, 6 Oct 2022 12:50:55 -0400 Subject: increment $VERSION after 5.13 release --- Changes | 2 ++ lib/URI.pm | 2 +- lib/URI/Escape.pm | 2 +- lib/URI/Heuristic.pm | 2 +- lib/URI/IRI.pm | 2 +- lib/URI/QueryParam.pm | 2 +- lib/URI/Split.pm | 2 +- lib/URI/URL.pm | 2 +- lib/URI/WithBase.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.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/nntps.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 +- 55 files changed, 56 insertions(+), 54 deletions(-) diff --git a/Changes b/Changes index 4963806..1ed0111 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for URI +{{$NEXT}} + 5.13 2022-10-06 16:46:32Z - Regression test added for a previous bug (5.11) in URI::file (Perlbotics). file() method of URI::file can return the current working directory diff --git a/lib/URI.pm b/lib/URI.pm index e058e9a..7b4fc3b 100644 --- a/lib/URI.pm +++ b/lib/URI.pm @@ -3,7 +3,7 @@ package URI; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; # 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; diff --git a/lib/URI/Escape.pm b/lib/URI/Escape.pm index cec5d56..cb2db1a 100644 --- a/lib/URI/Escape.pm +++ b/lib/URI/Escape.pm @@ -141,7 +141,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.13'; +our $VERSION = '5.14'; use Carp (); diff --git a/lib/URI/Heuristic.pm b/lib/URI/Heuristic.pm index ba169fb..14a914a 100644 --- a/lib/URI/Heuristic.pm +++ b/lib/URI/Heuristic.pm @@ -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.13'; +our $VERSION = '5.14'; our ($MY_COUNTRY, $DEBUG); diff --git a/lib/URI/IRI.pm b/lib/URI/IRI.pm index b5dd6e9..1a63643 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 = '5.13'; +our $VERSION = '5.14'; sub new { my($class, $uri, $scheme) = @_; diff --git a/lib/URI/QueryParam.pm b/lib/URI/QueryParam.pm index 246c231..73992e7 100644 --- a/lib/URI/QueryParam.pm +++ b/lib/URI/QueryParam.pm @@ -3,7 +3,7 @@ package URI::QueryParam; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; sub URI::_query::query_param { my $self = shift; diff --git a/lib/URI/Split.pm b/lib/URI/Split.pm index 3a2bf84..2fbdf84 100644 --- a/lib/URI/Split.pm +++ b/lib/URI/Split.pm @@ -3,7 +3,7 @@ package URI::Split; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use Exporter 5.57 'import'; our @EXPORT_OK = qw(uri_split uri_join); diff --git a/lib/URI/URL.pm b/lib/URI/URL.pm index 74adf82..4a4f71c 100644 --- a/lib/URI/URL.pm +++ b/lib/URI/URL.pm @@ -5,7 +5,7 @@ use warnings; use parent 'URI::WithBase'; -our $VERSION = '5.13'; +our $VERSION = '5.14'; # Provide as much as possible of the old URI::URL interface for backwards # compatibility... diff --git a/lib/URI/WithBase.pm b/lib/URI/WithBase.pm index 4406af7..afefcde 100644 --- a/lib/URI/WithBase.pm +++ b/lib/URI/WithBase.pm @@ -6,7 +6,7 @@ use warnings; use URI (); use Scalar::Util qw(blessed); -our $VERSION = '5.13'; +our $VERSION = '5.14'; use overload '""' => "as_string", fallback => 1; diff --git a/lib/URI/_foreign.pm b/lib/URI/_foreign.pm index a7713c4..fa3d6b4 100644 --- a/lib/URI/_foreign.pm +++ b/lib/URI/_foreign.pm @@ -5,6 +5,6 @@ use warnings; use parent 'URI::_generic'; -our $VERSION = '5.13'; +our $VERSION = '5.14'; 1; diff --git a/lib/URI/_generic.pm b/lib/URI/_generic.pm index 15c8dfb..467f0ad 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 = '5.13'; +our $VERSION = '5.14'; my $ACHAR = URI::HAS_RESERVED_SQUARE_BRACKETS ? $URI::uric : $URI::uric4host; $ACHAR =~ s,\\[/?],,g; my $PCHAR = $URI::uric; $PCHAR =~ s,\\[?],,g; diff --git a/lib/URI/_idna.pm b/lib/URI/_idna.pm index 8af80a5..d3500ac 100644 --- a/lib/URI/_idna.pm +++ b/lib/URI/_idna.pm @@ -9,7 +9,7 @@ use warnings; use URI::_punycode qw(decode_punycode encode_punycode); use Carp qw(croak); -our $VERSION = '5.13'; +our $VERSION = '5.14'; BEGIN { *URI::_idna::_ENV_::JOIN_LEAKS_UTF8_FLAGS = "$]" < 5.008_003 diff --git a/lib/URI/_ldap.pm b/lib/URI/_ldap.pm index ce4b551..d9636fb 100644 --- a/lib/URI/_ldap.pm +++ b/lib/URI/_ldap.pm @@ -7,7 +7,7 @@ package URI::_ldap; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use URI::Escape qw(uri_unescape); diff --git a/lib/URI/_login.pm b/lib/URI/_login.pm index b389dde..0950ca9 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 = '5.13'; +our $VERSION = '5.14'; # 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 d7036f7..9a97022 100644 --- a/lib/URI/_punycode.pm +++ b/lib/URI/_punycode.pm @@ -3,7 +3,7 @@ package URI::_punycode; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use Exporter 'import'; our @EXPORT = qw(encode_punycode decode_punycode); diff --git a/lib/URI/_query.pm b/lib/URI/_query.pm index 8c3e704..65ac72e 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 = '5.13'; +our $VERSION = '5.14'; sub query { diff --git a/lib/URI/_segment.pm b/lib/URI/_segment.pm index 3d8dbe5..299eaa3 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 = '5.13'; +our $VERSION = '5.14'; sub new { diff --git a/lib/URI/_server.pm b/lib/URI/_server.pm index 9b91a7f..f2c89a7 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 = '5.13'; +our $VERSION = '5.14'; sub _uric_escape { my($class, $str) = @_; diff --git a/lib/URI/_userpass.pm b/lib/URI/_userpass.pm index f9036da..35a422f 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 = '5.13'; +our $VERSION = '5.14'; sub user { diff --git a/lib/URI/data.pm b/lib/URI/data.pm index 3f06154..8ba128f 100644 --- a/lib/URI/data.pm +++ b/lib/URI/data.pm @@ -5,7 +5,7 @@ use warnings; use parent 'URI'; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use MIME::Base64 qw(decode_base64 encode_base64); use URI::Escape qw(uri_unescape); diff --git a/lib/URI/file.pm b/lib/URI/file.pm index 940f4ee..52919e7 100644 --- a/lib/URI/file.pm +++ b/lib/URI/file.pm @@ -4,7 +4,7 @@ use strict; use warnings; use parent 'URI::_generic'; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use URI::Escape qw(uri_unescape); diff --git a/lib/URI/file/Base.pm b/lib/URI/file/Base.pm index 3f25e3f..af5186d 100644 --- a/lib/URI/file/Base.pm +++ b/lib/URI/file/Base.pm @@ -5,7 +5,7 @@ use warnings; use URI::Escape (); -our $VERSION = '5.13'; +our $VERSION = '5.14'; sub new { diff --git a/lib/URI/file/FAT.pm b/lib/URI/file/FAT.pm index 72474e5..a7e896b 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 = '5.13'; +our $VERSION = '5.14'; sub fix_path { diff --git a/lib/URI/file/Mac.pm b/lib/URI/file/Mac.pm index 5523bf7..80e4831 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 = '5.13'; +our $VERSION = '5.14'; sub _file_extract_path { diff --git a/lib/URI/file/OS2.pm b/lib/URI/file/OS2.pm index c4c42c0..dc8d9a8 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 = '5.13'; +our $VERSION = '5.14'; # 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 96bc255..30c52a8 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 = '5.13'; +our $VERSION = '5.14'; sub _file_extract_path { diff --git a/lib/URI/file/Unix.pm b/lib/URI/file/Unix.pm index b3239b9..4f7e060 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 = '5.13'; +our $VERSION = '5.14'; sub _file_extract_path { diff --git a/lib/URI/file/Win32.pm b/lib/URI/file/Win32.pm index 7ebd094..34084e5 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 = '5.13'; +our $VERSION = '5.14'; sub _file_extract_authority { diff --git a/lib/URI/ftp.pm b/lib/URI/ftp.pm index 85fb616..751c0d0 100644 --- a/lib/URI/ftp.pm +++ b/lib/URI/ftp.pm @@ -3,7 +3,7 @@ package URI::ftp; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent qw(URI::_server URI::_userpass); diff --git a/lib/URI/gopher.pm b/lib/URI/gopher.pm index 645a091..e0c4f15 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_server'; diff --git a/lib/URI/http.pm b/lib/URI/http.pm index 359480a..d43b96f 100644 --- a/lib/URI/http.pm +++ b/lib/URI/http.pm @@ -3,7 +3,7 @@ package URI::http; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_server'; diff --git a/lib/URI/https.pm b/lib/URI/https.pm index 2e0ea3a..238cb9b 100644 --- a/lib/URI/https.pm +++ b/lib/URI/https.pm @@ -3,7 +3,7 @@ package URI::https; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::http'; diff --git a/lib/URI/ldap.pm b/lib/URI/ldap.pm index c5eb2d4..bd9463c 100644 --- a/lib/URI/ldap.pm +++ b/lib/URI/ldap.pm @@ -7,7 +7,7 @@ package URI::ldap; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent qw(URI::_ldap URI::_server); diff --git a/lib/URI/ldapi.pm b/lib/URI/ldapi.pm index 57bb9d2..11e41c2 100644 --- a/lib/URI/ldapi.pm +++ b/lib/URI/ldapi.pm @@ -3,7 +3,7 @@ package URI::ldapi; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent qw(URI::_ldap URI::_generic); diff --git a/lib/URI/ldaps.pm b/lib/URI/ldaps.pm index df281aa..a7e6c04 100644 --- a/lib/URI/ldaps.pm +++ b/lib/URI/ldaps.pm @@ -3,7 +3,7 @@ package URI::ldaps; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::ldap'; diff --git a/lib/URI/mailto.pm b/lib/URI/mailto.pm index bfed900..59da70a 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 = '5.13'; +our $VERSION = '5.14'; use parent qw(URI URI::_query); diff --git a/lib/URI/mms.pm b/lib/URI/mms.pm index 9f4a41c..02ccc58 100644 --- a/lib/URI/mms.pm +++ b/lib/URI/mms.pm @@ -3,7 +3,7 @@ package URI::mms; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::http'; diff --git a/lib/URI/news.pm b/lib/URI/news.pm index 162ce9a..cadda2b 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_server'; diff --git a/lib/URI/nntp.pm b/lib/URI/nntp.pm index 89dd3fb..810b64c 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI::news'; diff --git a/lib/URI/nntps.pm b/lib/URI/nntps.pm index 0a8223d..99165cd 100644 --- a/lib/URI/nntps.pm +++ b/lib/URI/nntps.pm @@ -3,7 +3,7 @@ package URI::nntps; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::nntp'; diff --git a/lib/URI/pop.pm b/lib/URI/pop.pm index 85873ed..9378fd7 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_server'; diff --git a/lib/URI/rlogin.pm b/lib/URI/rlogin.pm index 92befdd..21984b4 100644 --- a/lib/URI/rlogin.pm +++ b/lib/URI/rlogin.pm @@ -3,7 +3,7 @@ package URI::rlogin; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_login'; diff --git a/lib/URI/rsync.pm b/lib/URI/rsync.pm index 7695f72..2daa27b 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 = '5.13'; +our $VERSION = '5.14'; use parent qw(URI::_server URI::_userpass); diff --git a/lib/URI/rtsp.pm b/lib/URI/rtsp.pm index 5de129f..468c163 100644 --- a/lib/URI/rtsp.pm +++ b/lib/URI/rtsp.pm @@ -3,7 +3,7 @@ package URI::rtsp; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::http'; diff --git a/lib/URI/rtspu.pm b/lib/URI/rtspu.pm index 958910c..90a5c91 100644 --- a/lib/URI/rtspu.pm +++ b/lib/URI/rtspu.pm @@ -3,7 +3,7 @@ package URI::rtspu; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::rtsp'; diff --git a/lib/URI/sftp.pm b/lib/URI/sftp.pm index 48750fc..ecc5d19 100644 --- a/lib/URI/sftp.pm +++ b/lib/URI/sftp.pm @@ -5,6 +5,6 @@ use warnings; use parent 'URI::ssh'; -our $VERSION = '5.13'; +our $VERSION = '5.14'; 1; diff --git a/lib/URI/sip.pm b/lib/URI/sip.pm index 83e15e3..c990269 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 (); -our $VERSION = '5.13'; +our $VERSION = '5.14'; sub default_port { 5060 } diff --git a/lib/URI/sips.pm b/lib/URI/sips.pm index b5c865d..1169606 100644 --- a/lib/URI/sips.pm +++ b/lib/URI/sips.pm @@ -3,7 +3,7 @@ package URI::sips; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::sip'; diff --git a/lib/URI/snews.pm b/lib/URI/snews.pm index 188e59e..7dea49c 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI::news'; diff --git a/lib/URI/ssh.pm b/lib/URI/ssh.pm index 6740c00..f34998f 100644 --- a/lib/URI/ssh.pm +++ b/lib/URI/ssh.pm @@ -3,7 +3,7 @@ package URI::ssh; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_login'; diff --git a/lib/URI/telnet.pm b/lib/URI/telnet.pm index 356892b..3820fff 100644 --- a/lib/URI/telnet.pm +++ b/lib/URI/telnet.pm @@ -3,7 +3,7 @@ package URI::telnet; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_login'; diff --git a/lib/URI/tn3270.pm b/lib/URI/tn3270.pm index ccc368b..c912e2e 100644 --- a/lib/URI/tn3270.pm +++ b/lib/URI/tn3270.pm @@ -3,7 +3,7 @@ package URI::tn3270; use strict; use warnings; -our $VERSION = '5.13'; +our $VERSION = '5.14'; use parent 'URI::_login'; diff --git a/lib/URI/urn.pm b/lib/URI/urn.pm index a8d7a45..4f3c52a 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI'; diff --git a/lib/URI/urn/isbn.pm b/lib/URI/urn/isbn.pm index afae99b..9ac1ada 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI::urn'; diff --git a/lib/URI/urn/oid.pm b/lib/URI/urn/oid.pm index 2c6381a..d28c5f6 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 = '5.13'; +our $VERSION = '5.14'; use parent 'URI::urn'; -- cgit v1.2.1