Skip to content

Commit

Permalink
Release 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarr committed Nov 14, 2009
1 parent fbf4073 commit 31de41f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions Changes
@@ -1,3 +1,11 @@
1.22 -- Sat Nov 14 09:26:15 CST 2009

* silence a compiler warning about an unreferenced local variable [Steve Hay]
* RT#51484 Preserve utf8 flag of string passed to dualvar()
* RT#51454 Check first argument to first/reduce is a code reference
* RT#50528 [PATCH] p_tainted.t fix for VMS [Craig A. Berry]
* RT#48550 fix pure perl looks_like_number not to match non-ascii digits

1.21 -- Mon May 18 10:32:14 CDT 2009

* Change build system for perl-only install not to need to modify blib
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST
Expand Up @@ -6,7 +6,7 @@ lib/Scalar/Util.pm
lib/Scalar/Util/PP.pm
ListUtil.xs
Makefile.PL
MANIFEST
MANIFEST This list of files
multicall.h
README
t/00version.t
Expand Down
2 changes: 1 addition & 1 deletion lib/List/Util.pm
Expand Up @@ -14,7 +14,7 @@ require Exporter;

@ISA = qw(Exporter);
@EXPORT_OK = qw(first min max minstr maxstr reduce sum shuffle);
$VERSION = "1.21";
$VERSION = "1.22";
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;

Expand Down
2 changes: 1 addition & 1 deletion lib/List/Util/PP.pm
Expand Up @@ -13,7 +13,7 @@ require Exporter;

@ISA = qw(Exporter);
@EXPORT = qw(first min max minstr maxstr reduce sum shuffle);
$VERSION = "1.21";
$VERSION = "1.22";
$VERSION = eval $VERSION;

sub reduce (&@) {
Expand Down
2 changes: 1 addition & 1 deletion lib/List/Util/XS.pm
Expand Up @@ -3,7 +3,7 @@ use strict;
use vars qw($VERSION);
use List::Util;

$VERSION = "1.21"; # FIXUP
$VERSION = "1.22"; # FIXUP
$VERSION = eval $VERSION; # FIXUP

sub _VERSION { # FIXUP
Expand Down
2 changes: 1 addition & 1 deletion lib/Scalar/Util.pm
Expand Up @@ -13,7 +13,7 @@ require List::Util; # List::Util loads the XS

@ISA = qw(Exporter);
@EXPORT_OK = qw(blessed dualvar reftype weaken isweak tainted readonly openhandle refaddr isvstring looks_like_number set_prototype);
$VERSION = "1.21";
$VERSION = "1.22";
$VERSION = eval $VERSION;

unless (defined &dualvar) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Scalar/Util/PP.pm
Expand Up @@ -16,7 +16,7 @@ use B qw(svref_2object);

@ISA = qw(Exporter);
@EXPORT = qw(blessed reftype tainted readonly refaddr looks_like_number);
$VERSION = "1.21";
$VERSION = "1.22";
$VERSION = eval $VERSION;

sub blessed ($) {
Expand Down

0 comments on commit 31de41f

Please sign in to comment.