Skip to content

Commit 7accc80

Browse files
committed
increment $VERSION after 5.32 release
1 parent 71afcc1 commit 7accc80

Some content is hidden

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

65 files changed

+66
-64
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
5.32 2025-05-10 21:26:50Z
46
- Add authority() to URI::otpauth (GH#152) (GH#153) (Lester Hightower)
57
- Implement URI::smb for Samba/CIFS (GH#149) (buralien)

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 = '5.32';
6+
our $VERSION = '5.33';
77

88
# 1=version 5.10 and earlier; 0=version 5.11 and later
99
use constant HAS_RESERVED_SQUARE_BRACKETS => $ENV{URI_HAS_RESERVED_SQUARE_BRACKETS} ? 1 : 0;

lib/URI/Escape.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ use Exporter 5.57 'import';
148148
our %escapes;
149149
our @EXPORT = qw(uri_escape uri_unescape uri_escape_utf8);
150150
our @EXPORT_OK = qw(%escapes);
151-
our $VERSION = '5.32';
151+
our $VERSION = '5.33';
152152

153153
use Carp ();
154154

lib/URI/Heuristic.pm

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

9292
use Exporter 5.57 'import';
9393
our @EXPORT_OK = qw(uf_uri uf_uristr uf_url uf_urlstr);
94-
our $VERSION = '5.32';
94+
our $VERSION = '5.33';
9595

9696
our ($MY_COUNTRY, $DEBUG);
9797

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 = '5.32';
11+
our $VERSION = '5.33';
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
@@ -2,7 +2,7 @@ package URI::QueryParam;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '5.32';
5+
our $VERSION = '5.33';
66

77
1;
88

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 = '5.32';
6+
our $VERSION = '5.33';
77

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

lib/URI/URL.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 'URI::WithBase';
77

8-
our $VERSION = '5.32';
8+
our $VERSION = '5.33';
99

1010
# Provide as much as possible of the old URI::URL interface for backwards
1111
# compatibility...

lib/URI/WithBase.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use warnings;
66
use URI ();
77
use Scalar::Util qw(blessed);
88

9-
our $VERSION = '5.32';
9+
our $VERSION = '5.33';
1010

1111
use overload '""' => "as_string", fallback => 1;
1212

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 = '5.32';
8+
our $VERSION = '5.33';
99

1010
1;

0 commit comments

Comments
 (0)