Skip to content

Commit 9640e69

Browse files
committed
increment $VERSION after 1.75 release
1 parent a0bfba6 commit 9640e69

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
-48
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.75 2019-01-08 19:45:38Z
46
- $uri->canonical unconditionally returns a clone (GH#58) (Dorian Taylor)
57

lib/URI.pm

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

6-
our $VERSION = '1.75';
6+
our $VERSION = '1.76';
77

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

lib/URI/IRI.pm

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

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

11-
our $VERSION = '1.75';
11+
our $VERSION = '1.76';
1212

1313
sub new {
1414
my($class, $uri, $scheme) = @_;

lib/URI/QueryParam.pm

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

6-
our $VERSION = '1.75';
6+
our $VERSION = '1.76';
77

88
sub URI::_query::query_param {
99
my $self = shift;

lib/URI/Split.pm

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

6-
our $VERSION = '1.75';
6+
our $VERSION = '1.76';
77

88
use Exporter 5.57 'import';
99
our @EXPORT_OK = qw(uri_split uri_join);

lib/URI/_foreign.pm

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

66
use parent 'URI::_generic';
77

8-
our $VERSION = '1.75';
8+
our $VERSION = '1.76';
99

1010
1;

lib/URI/_generic.pm

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

11-
our $VERSION = '1.75';
11+
our $VERSION = '1.76';
1212

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

lib/URI/_idna.pm

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

12-
our $VERSION = '1.75';
12+
our $VERSION = '1.76';
1313

1414
BEGIN {
1515
*URI::_idna::_ENV_::JOIN_LEAKS_UTF8_FLAGS = "$]" < 5.008_003

lib/URI/_ldap.pm

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

10-
our $VERSION = '1.75';
10+
our $VERSION = '1.76';
1111

1212
use URI::Escape qw(uri_unescape);
1313

lib/URI/_login.pm

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

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

8-
our $VERSION = '1.75';
8+
our $VERSION = '1.76';
99

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

0 commit comments

Comments
 (0)