Skip to content

Commit

Permalink
Release 0.83
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Sep 8, 2024
1 parent f4afc13 commit 77468fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for CGI-Info

0.08
0.83 Sun 8 Sep 08:52:23 EDT 2024
Mark Go-http-client as a robot
Support CircleCI
Fix t/script.t which failed on some platforms
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CGI-Info Version 0.82
CGI-Info Version 0.83

INSTALLATION

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CGI::Info - Information about the CGI environment

# VERSION

Version 0.82
Version 0.83

# SYNOPSIS

Expand Down Expand Up @@ -192,7 +192,7 @@ constructor.
my $info = CGI::Info->new();
my $allowed = {
foo => qr/^\d*$/, # foo must be a number, or empty
bar => undef,
bar => undef, # bar can be given and be any value
xyzzy => qr/^[\w\s-]+$/, # must be alphanumeric
# to prevent XSS, and non-empty
# as a sanity check
Expand Down
4 changes: 2 additions & 2 deletions lib/CGI/Info.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ CGI::Info - Information about the CGI environment
=head1 VERSION
Version 0.82
Version 0.83
=cut

our $VERSION = '0.82';
our $VERSION = '0.83';

=head1 SYNOPSIS
Expand Down

0 comments on commit 77468fc

Please sign in to comment.