In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/36bb8f6885bdecb513ebff0983944397885d5cfa?hp=bc2d66694a8e3c3ab6f06076bb672776d0bfde33>
- Log ----------------------------------------------------------------- commit 36bb8f6885bdecb513ebff0983944397885d5cfa Author: James E Keenan <[email protected]> Date: Sun Jul 21 09:34:05 2019 -0400 perldelta for 6b62d97b14ca2894417d0297a435c63e056e31fe commit 6b62d97b14ca2894417d0297a435c63e056e31fe Author: E.Choroba <[email protected]> Date: Thu Jul 18 15:02:19 2019 +0200 Fix pod formatting > is an HTML entity, not pod. Committer: increment $VERSION For: RT # 134300 ----------------------------------------------------------------------- Summary of changes: lib/Thread.pm | 6 +++--- pod/perldelta.pod | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lib/Thread.pm b/lib/Thread.pm index dbe0719bf5..70bcac3898 100644 --- a/lib/Thread.pm +++ b/lib/Thread.pm @@ -4,7 +4,7 @@ use strict; use warnings; no warnings 'redefine'; -our $VERSION = '3.04'; +our $VERSION = '3.05'; $VERSION = eval $VERSION; BEGIN { @@ -117,7 +117,7 @@ C<new> starts a new thread of execution in the referenced subroutine. The optional list is passed as parameters to the subroutine. Execution continues in both the subroutine and the code after the C<new> call. -C<Thread->new> returns a thread object representing the newly created +C<< Thread->new >> returns a thread object representing the newly created thread. =item lock VARIABLE @@ -148,7 +148,7 @@ C<lock(\$a)> is equivalent to C<lock($a)>, while C<lock(\\$a)> is not. C<async> creates a thread to execute the block immediately following it. This block is treated as an anonymous sub, and so must have a -semi-colon after the closing brace. Like C<Thread->new>, C<async> +semi-colon after the closing brace. Like C<< Thread->new >>, C<async> returns a thread object. =item Thread->self diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 14c8d5bc49..18ec24eb6f 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -125,6 +125,10 @@ XXX Remove this section if not applicable. =item * +L<Thread> has been upgraded from version 3.04 to 3.05. + +=item * + L<XXX> has been upgraded from version A.xx to B.yy. If there was something important to note about this change, include that here. -- Perl5 Master Repository
