In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/b245455d191e476f86c230c28cb55fabbc5f21ca?hp=1bac45e496301fc6a45ed8ea23862a5bb8faa8a0>

- Log -----------------------------------------------------------------
commit b245455d191e476f86c230c28cb55fabbc5f21ca
Author: Steve Hay <steve.m....@googlemail.com>
Date:   Fri Sep 19 09:24:13 2014 +0100

    perldelta for 1645b83c5c

M       pod/perldelta.pod

commit 4c9184fdaffeca721447800c5d42fdda958b33e4
Author: Steve Hay <steve.m....@googlemail.com>
Date:   Fri Sep 19 09:11:12 2014 +0100

    perldelta - Add links for rt.perl.org bugs

M       pod/perldelta.pod

commit 5c31a0ca13f84758818344f56343f261a77c0759
Author: Steve Hay <steve.m....@googlemail.com>
Date:   Fri Sep 19 09:08:37 2014 +0100

    perldelta - Data::Dumper has been upgraded

M       pod/perldelta.pod

commit 316ab8c65059445efb4920a431d85909fcc90c4e
Author: Steve Hay <steve.m....@googlemail.com>
Date:   Fri Sep 19 09:08:11 2014 +0100

    Bump all Math::BigInt $VERSIONs as per 945313f0ae following a0732aaa4b
    
    And add a perldelta note.

M       dist/Math-BigInt/lib/Math/BigFloat.pm
M       dist/Math-BigInt/lib/Math/BigInt/Calc.pm
M       dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
M       pod/perldelta.pod
-----------------------------------------------------------------------

Summary of changes:
 dist/Math-BigInt/lib/Math/BigFloat.pm       |  2 +-
 dist/Math-BigInt/lib/Math/BigInt/Calc.pm    |  2 +-
 dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm |  2 +-
 pod/perldelta.pod                           | 23 +++++++++++++++++++++--
 4 files changed, 24 insertions(+), 5 deletions(-)

diff --git a/dist/Math-BigInt/lib/Math/BigFloat.pm 
b/dist/Math-BigInt/lib/Math/BigFloat.pm
index e022949..1c31496 100644
--- a/dist/Math-BigInt/lib/Math/BigFloat.pm
+++ b/dist/Math-BigInt/lib/Math/BigFloat.pm
@@ -12,7 +12,7 @@ package Math::BigFloat;
 #   _a : accuracy
 #   _p : precision
 
-$VERSION = '1.9996';
+$VERSION = '1.9997';
 require 5.006002;
 
 require Exporter;
diff --git a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm 
b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm
index 588e2ac..d511bab 100644
--- a/dist/Math-BigInt/lib/Math/BigInt/Calc.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt/Calc.pm
@@ -4,7 +4,7 @@ use 5.006002;
 use strict;
 # use warnings;        # do not use warnings for older Perls
 
-our $VERSION = '1.9996';
+our $VERSION = '1.9997';
 
 # Package to store unsigned big integers in decimal and do math with them
 
diff --git a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm 
b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
index 1a83f09..9bf3e07 100644
--- a/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt/CalcEmu.pm
@@ -5,7 +5,7 @@ use strict;
 # use warnings;        # do not use warnings for older Perls
 use vars qw/$VERSION/;
 
-$VERSION = '1.9996';
+$VERSION = '1.9997';
 
 package Math::BigInt;
 
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 03fa694..e8b373e 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -204,6 +204,10 @@ L<CPAN::Meta::Requirements> has been upgraded from version 
2.126 to 2.128.
 
 =item *
 
+L<Data::Dumper> has been upgraded from version 2.152 to 2.154.
+
+=item *
+
 L<experimental> has been upgraded from version 0.008 to 0.010.
 
 =item *
@@ -249,6 +253,10 @@ L<Locale::Codes> has been upgraded from version 3.31 to 
3.32.
 
 =item *
 
+L<Math::BigInt> has been upgraded from version 1.9996 to 1.9997.
+
+=item *
+
 L<Module::CoreList> has been upgraded from version 5.021003 to 5.20140915.
 
 =item *
@@ -396,7 +404,8 @@ XXX Changes (i.e. rewording) of diagnostic messages go here
 L<Global symbol "%s" requires explicit package name|perldiag/Global symbol 
"%s" requires explicit package name (did you forget to declare "my %s"?)>
 
 This message has had '(did you forget to declare "my %s"?)' appended to it,
-to make it more helpful to new Perl programmers.  [perl #121638]
+to make it more helpful to new Perl programmers.
+L<[perl #121638]|https://rt.perl.org/Ticket/Display.html?id=121638>
 
 =back
 
@@ -742,7 +751,8 @@ C<sort subname LIST> now supports lexical subs for the 
comparison routine.
 
 Aliasing (e.g., via C<*x = *y>) could confuse list assignments that mention
 the two names for the same variable on either side, causing wrong values to
-be assigned.  [perl #15667]
+be assigned.
+L<[perl #15667]|https://rt.perl.org/Ticket/Display.html?id=15667>
 
 =item *
 
@@ -751,6 +761,15 @@ This has been fixed.  It is doubtful that any crash could 
have occurred.
 This bug goes back to when here-docs were introduced in perl 3.000
 twenty-five years ago.
 
+=item *
+
+An optimization in C<split> to treat C<split/^/> like C<split/^/m> had the
+unfortunate side-effect of also treating C<split/\A/> like C<split/^/m>, which
+it should not.  This has been fixed.  (Note, however, that C<split/^x/> does
+not behave like C<split/^x/m>, which is also considered to be a bug and will be
+fixed in a future version.)
+L<[perl #122761]|https://rt.perl.org/Ticket/Display.html?id=122761>
+
 =back
 
 =head1 Known Problems

--
Perl5 Master Repository

Reply via email to