Skip to content

Commit

Permalink
Release 1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarr committed Mar 11, 2010
1 parent 02ce02c commit 962152b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions Changes
@@ -1,3 +1,13 @@
1.23 -- Wed Mar 10 20:50:00 CST 2010

* Add a test file to ensure 'GETMAGIC' called once [gfx]
* "GETMAGIC" should be called only once [gfx]
* Use PERL_NO_GET_CONTEXT for efficiency (see perlguts) [gfx]
* Don't care about dVAR. ExtUtils::ParseXS deals with it. [gfx]
* t/p_max.t, t/p_min.t fail on perl5.8.1. [tokuhirom]
* avoid non-portable warnings
* Fix PP::reftype in edge cases [gfx]

1.22 -- Sat Nov 14 09:26:15 CST 2009

* silence a compiler warning about an unreferenced local variable [Steve Hay]
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.22";
$VERSION = "1.23";
$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.22";
$VERSION = "1.23";
$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.22"; # FIXUP
$VERSION = "1.23"; # 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.22";
$VERSION = "1.23";
$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.22";
$VERSION = "1.23";
$VERSION = eval $VERSION;

sub blessed ($) {
Expand Down

0 comments on commit 962152b

Please sign in to comment.