In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/dd5f6923bc119760af1739228df8cedcf05fd88b?hp=3e7fd5e86434e6902988abc13b5f3d2977f641b6>
- Log ----------------------------------------------------------------- commit dd5f6923bc119760af1739228df8cedcf05fd88b Author: Ãvar Arnfjörð Bjarmason <[email protected]> Date: Mon Jul 19 14:55:35 2010 +0000 perl5133delta: Test-Harness to CPAN version 3.21 (6d31366) M pod/perl5133delta.pod commit e417c9148b5ada5fb3a059dd7299a9e98d1ff5bb Author: Ãvar Arnfjörð Bjarmason <[email protected]> Date: Mon Jul 19 14:44:32 2010 +0000 perl5133delta: Term-ANSIColor was bumped to CPAN version 3.00 (2c33c76) M pod/perl5133delta.pod commit 4cd32ffe62edd65dfc22629ed249b5a0ec7b6037 Author: Ãvar Arnfjörð Bjarmason <[email protected]> Date: Mon Jul 19 14:39:11 2010 +0000 perl5133delta: Link from the CvGV() change to Known Problems M pod/perl5133delta.pod commit c1a0360bdffc168ccfedd570bcdd7f1f777c8a38 Author: Ãvar Arnfjörð Bjarmason <[email protected]> Date: Mon Jul 19 14:30:32 2010 +0000 perl5133delta: Note the commit range for "MacOS Classic" M pod/perl5133delta.pod commit 2b32d74cef00e0bba7871a1c7dc3f66b07049e2c Author: Ãvar Arnfjörð Bjarmason <[email protected]> Date: Mon Jul 19 14:23:42 2010 +0000 perl5133delta: Expand on "Uppercase X/B allowed.." Mention that C<eval sprintf "%#X", 0x10> now works, and that upper case hex/binary literals are supported in C and friends. M pod/perl5133delta.pod commit 15d6324c2f3654e2d5818d7d451b90a689d37353 Author: David Golden <[email protected]> Date: Mon Jul 19 07:23:10 2010 -0700 Add perl5133delta reminder about module linking M pod/perl5133delta.pod ----------------------------------------------------------------------- Summary of changes: pod/perl5133delta.pod | 26 ++++++++++++++++++++++---- 1 files changed, 22 insertions(+), 4 deletions(-) diff --git a/pod/perl5133delta.pod b/pod/perl5133delta.pod index 1636703..0864858 100644 --- a/pod/perl5133delta.pod +++ b/pod/perl5133delta.pod @@ -4,6 +4,8 @@ perldelta - what is new for perl v5.13.3 +XXX Add links around modules throughout + =head1 DESCRIPTION This document describes differences between the 5.13.3 release and @@ -49,8 +51,14 @@ See L<charnames> for details on all these changes. =head2 Uppercase X/B allowed in hexadecimal/binary literals -Literals may now use either C<0X...> or C<0B...> in addition to C<0x...> -and C<0b...> prefixes. (RT#76296) (a674e8d) +Literals may now use either upper case C<0X...> or C<0B...> prefixes, +in addition to the already supported C<0x...> and C<0b...> +syntax. (RT#76296) (a674e8d) + +C, Ruby, Python and PHP already supported this syntax, and it makes +Perl more internally consistent. A round-trip with C<eval sprintf +"%#X", 0x10> now returns C<16> in addition to C<eval sprintf "%#x", +0x10>, which worked before. =head1 Incompatible Changes @@ -218,6 +226,14 @@ Module-Load updated to CPAN version 0.18 (93eaa32) =item * +Term-ANSIColor to CPAN version 3.00 (2c33c76) + +=item * + +Test-Harness to CPAN version 3.21 (6d31366) + +=item * + Time-HiRes updated to CPAN version 1.9721 (68c5b4d) =item * @@ -388,7 +404,7 @@ Several test files have been modernized to use Test::More Support for MacOS Classic within ExtUtils::MakeMaker was removed from Perl in December 2004. Vestigial MacOS Classic specific code has now been removed -from other core modules as well. +from other core modules as well (8f8c2a4..c457df0). =back @@ -414,7 +430,9 @@ counted. To ensure consistent behaviour, direct assignment to it, for example C<CvGV(cv) = gv> is now a compile-time error. A new macro, C<CvGV_set(cv,gv)> has been introduced to perform this operation safely. Note that modification of this field is not part of of the public API, -regardless of this new macro. +regardless of this new macro. This change caused some +L<issues|/"Known Problems"> in modules that used the private C<GvGV()> +field. =item * -- Perl5 Master Repository
