Skip to content

Commit 7216de9

Browse files
increment $VERSION after 1.73 release
1 parent 958e1fd commit 7216de9

Some content is hidden

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

49 files changed

+50
-95
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Revision history for URI
22

3+
{{$NEXT}}
4+
35
1.73 2018-01-09 06:42:51Z
46
- Update documentation for URI::_punycode (GH Issue #45)
57

lib/URI.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ package URI;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '1.73';
7-
$VERSION = eval $VERSION;
6+
our $VERSION = '1.74';
87

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

lib/URI/IRI.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ use URI ();
88

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

11-
our $VERSION = '1.73';
12-
$VERSION = eval $VERSION;
11+
our $VERSION = '1.74';
1312

1413
sub new {
1514
my($class, $uri, $scheme) = @_;

lib/URI/QueryParam.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ package URI::QueryParam;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '1.73';
7-
$VERSION = eval $VERSION;
6+
our $VERSION = '1.74';
87

98
sub URI::_query::query_param {
109
my $self = shift;

lib/URI/Split.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ package URI::Split;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '1.73';
7-
$VERSION = eval $VERSION;
6+
our $VERSION = '1.74';
87

98
use Exporter 5.57 'import';
109
our @EXPORT_OK = qw(uri_split uri_join);

lib/URI/_foreign.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ use warnings;
55

66
use parent 'URI::_generic';
77

8-
our $VERSION = '1.73';
9-
$VERSION = eval $VERSION;
8+
our $VERSION = '1.74';
109

1110
1;

lib/URI/_generic.pm

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

11-
our $VERSION = '1.73';
12-
$VERSION = eval $VERSION;
11+
our $VERSION = '1.74';
1312

1413
my $ACHAR = $URI::uric; $ACHAR =~ s,\\[/?],,g;
1514
my $PCHAR = $URI::uric; $PCHAR =~ s,\\[?],,g;

lib/URI/_idna.pm

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

12-
our $VERSION = '1.73';
13-
$VERSION = eval $VERSION;
12+
our $VERSION = '1.74';
1413

1514
BEGIN {
1615
*URI::_idna::_ENV_::JOIN_LEAKS_UTF8_FLAGS = "$]" < 5.008_003

lib/URI/_ldap.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ package URI::_ldap;
77
use strict;
88
use warnings;
99

10-
our $VERSION = '1.73';
11-
$VERSION = eval $VERSION;
10+
our $VERSION = '1.74';
1211

1312
use URI::Escape qw(uri_unescape);
1413

lib/URI/_login.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ use warnings;
55

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

8-
our $VERSION = '1.73';
9-
$VERSION = eval $VERSION;
8+
our $VERSION = '1.74';
109

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

0 commit comments

Comments
 (0)