~ubuntu-branches/ubuntu/precise/rakudo/precise

« back to all changes in this revision

Viewing changes to docs/announce/2009-12

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur
  • Date: 2010-03-29 22:47:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100329224734-7bwt61rrhpn6g7m4
Tags: 0.1~2010.01-1
* generate a manpage from docs/running.pod
* update the d/watch file
* New Upstream Version
  - update dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Announce: Rakudo Perl 6 development release #24 ("Seoul")
 
2
 
 
3
On behalf of the Rakudo development team, I'm pleased to announce the
 
4
December 2009 development release of Rakudo Perl #24 "Seoul".
 
5
Rakudo is an implementation of Perl 6 on the Parrot Virtual Machine
 
6
(see http://www.parrot.org).  The tarball for the December 2009 release
 
7
is available from http://github.com/rakudo/rakudo/downloads
 
8
 
 
9
Due to the continued rapid pace of Rakudo development and the frequent
 
10
addition of new Perl 6 features and bugfixes, we recommend building Rakudo
 
11
from the latest source, available from the main repository at github.
 
12
More details are available at http://rakudo.org/how-to-get-rakudo.
 
13
 
 
14
Rakudo Perl follows a monthly release cycle, with each release code named after
 
15
a Perl Mongers group.  The December 2009 release is code named "Seoul" for
 
16
Seoul.pm, who hosted Jonathan so well recently, and because they have a cake
 
17
duck.
 
18
 
 
19
Shortly after the October 2009 (#22) release, the Rakudo team began a new
 
20
branch of Rakudo development ("ng") that refactors the grammar to much more
 
21
closely align with STD.pm as well as update some core features that have been
 
22
difficult to achieve in the master branch [1, 2].  Most of our effort for the
 
23
past month has been in this new branch, but as of the release date the new
 
24
version had not sufficiently progressed to be the release copy.  We expect to
 
25
have the new version in place in the January 2010 release, but may elect
 
26
to have an interim release from the new branch before then.
 
27
 
 
28
This release of Rakudo requires Parrot 1.9.0.  One must still
 
29
perform "make install" in the Rakudo directory before the "perl6"
 
30
executable will run anywhere other than the Rakudo build directory.
 
31
For the latest information on building and using Rakudo Perl, see the
 
32
readme file section titled "Building and invoking Rakudo".
 
33
 
 
34
Some of the specific changes and improvements occuring with this
 
35
release include:
 
36
 
 
37
* Rakudo is now passing 32,192 spectests, a "decrease" of 561 passing
 
38
  tests since the November 2009 release.  We pass fewer tests now
 
39
  because specification changes caused many obsolete (but passing)
 
40
  tests to be removed from the suite -- from 38,318 in November to
 
41
  37,376 now.  The percentage of passing tests has increased, from
 
42
  85.5% in November to 86.1% today.
 
43
 
 
44
* More improvements to the Rat type and related math functions to
 
45
  remain aligned with the specification.
 
46
 
 
47
The Perl 6 language specification is still in flux. Please take note of the
 
48
following changes, which might affect your existing programs. In the next
 
49
release of Rakudo, the deprecated features will likely be gone.
 
50
 
 
51
* The root of the object hierarchy has been changed from 'Object' to 'Mu'.
 
52
  The type 'Object' goes away.
 
53
 
 
54
* The term 'undef' is gone. You can replace it with other constructs,
 
55
  depending on context:
 
56
    - 'Nil' is undefined in item context, and the empty list in list context
 
57
    - 'Mu' is the most general undefined value which does not flatten in list
 
58
      context
 
59
    - as a smart matching target, you can replace '$obj ~~ undef'
 
60
      by '$obj ~~ *.notdef'
 
61
 
 
62
 
 
63
The development team thanks all of our contributors and sponsors for
 
64
making Rakudo Perl possible.  If you would like to contribute,
 
65
see http://rakudo.org/how-to-help , ask on the perl6-compiler@perl.org
 
66
mailing list, or ask on IRC #perl6 on freenode.
 
67
 
 
68
The next release of Rakudo (#25) is scheduled for January 21, 2010.
 
69
A list of the other planned release dates and codenames for 2010 is
 
70
available in the "docs/release_guide.pod" file.  In general, Rakudo
 
71
development releases are scheduled to occur two days after each
 
72
Parrot monthly release.  Parrot releases the third Tuesday of each month.
 
73
 
 
74
Have fun!
 
75
 
 
76
[1] http://use.perl.org/~pmichaud/journal/39779
 
77
[2] http://use.perl.org/~pmichaud/journal/39874