diff --git a/Changes b/Changes index 616309d..5f00927 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for CGI-Info -0.88 +0.88 Mon Jan 13 09:33:24 EST 2025 Improved arg checking Merge https://github.com/nigelhorne/CGI-Info/pull/21 (plicease) Added _get_env() diff --git a/README b/README index 2f8428d..ee36fb5 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -CGI-Info Version 0.87 +CGI-Info Version 0.88 INSTALLATION @@ -29,6 +29,6 @@ You can also look for information at: LICENSE AND COPYRIGHT -Copyright (C) 2010-2024 Nigel Horne +Copyright (C) 2010-2025 Nigel Horne This program is released under the following licence: GPL2 diff --git a/README.md b/README.md index 679d24f..d8e3aa0 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ CGI::Info gets information about the system that a CGI script is running on. # VERSION -Version 0.87 +Version 0.88 # SYNOPSIS diff --git a/lib/CGI/Info.pm b/lib/CGI/Info.pm index 8cc9fcf..0b08556 100644 --- a/lib/CGI/Info.pm +++ b/lib/CGI/Info.pm @@ -31,11 +31,11 @@ CGI::Info gets information about the system that a CGI script is running on. =head1 VERSION -Version 0.87 +Version 0.88 =cut -our $VERSION = '0.87'; +our $VERSION = '0.88'; =head1 SYNOPSIS @@ -118,6 +118,7 @@ sub new carp(__PACKAGE__, ' use ->new() not ::new() to instantiate'); return; } + # FIXME: this only works when no arguments are given $class = __PACKAGE__; } elsif(Scalar::Util::blessed($class)) { diff --git a/t/pod-spelling.t b/t/pod-spelling.t index e5fa38a..d987851 100644 --- a/t/pod-spelling.t +++ b/t/pod-spelling.t @@ -4,7 +4,6 @@ use strict; use warnings; use Test::DescribeMe qw(author); -use Test::Most; use Test::Needs 'Test::Spelling'; Test::Spelling->import();