hope we'll all be proud of what Perl is becoming. And ready to get back to the keyboard for 5.12, for which, I hope, we'll not wait as long as we waited for 5.10.

I personally believe that we can ask perl for an estimate:

#!/usr/bin/perl use strict; use warnings; use Date::Parse; use Statistics::LineFit; my $lf=Statistics::LineFit->new; $lf->setData([4,6,8,10], [map str2time($_), split /\n/ => <<'.EOD']); 13 Jun 1997 22 Mar 2000 18 Jul 2002 18 Dec 2007 .EOD my ($i,$s)=$lf->coefficients; print "Perl 5.12 estimated release date: " . localtime($i+$s*12), "\n" +; __END__

Of course, anyone who both sucks less is better than me at statistics, and knows perl history better than I do, could improve on this. Anyway, I get:

Perl 5.12 estimated release date: Mon Jul 5 13:00:00 2010
--
If you can't understand the incipit, then please check the IPB Campaign.

In reply to Re^2: Perl 5.10.0 is out by blazar
in thread Perl 5.10.0 is out by moritz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.