From 77468fc67714a7944d284b2225215e732a341a90 Mon Sep 17 00:00:00 2001 From: Nigel Horne Date: Sun, 8 Sep 2024 08:54:35 -0400 Subject: [PATCH] Release 0.83 --- Changes | 2 +- README | 2 +- README.md | 4 ++-- lib/CGI/Info.pm | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index ee30190..825e08b 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/README b/README index 8834a0f..d3323e5 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -CGI-Info Version 0.82 +CGI-Info Version 0.83 INSTALLATION diff --git a/README.md b/README.md index e61ce71..4c334b7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ CGI::Info - Information about the CGI environment # VERSION -Version 0.82 +Version 0.83 # SYNOPSIS @@ -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 diff --git a/lib/CGI/Info.pm b/lib/CGI/Info.pm index fdce3e4..4a4ffac 100644 --- a/lib/CGI/Info.pm +++ b/lib/CGI/Info.pm @@ -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