Changeset 10827 for ChangeLog

Show
Ignore:
Timestamp:
06/22/06 21:43:59 (2 years ago)
Author:
audreyt
Message:

* Some more changelogging, now at r10207

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r10712 r10827  
    1 = Changes for 6.2.12 (rXXXXX) - June XX, 2006 *** up to r9800 excluding updates to misc/ *** 
     1= Changes for 6.2.12 (rXXXXX) - June XX, 2006 *** up to r10207 excluding updates to misc/ *** 
    22 
    33== Licensing Changes 
     
    6969* Juerd's talk "Perl 6 Myths" in `/docs/talks/p6myths2.html`. 
    7070* [examples/qotw/]: Added the QOTW 8 Expert solution. 
     71* [examples/rules/]: Added a sample BASIC parser. 
     72* [examples/concurrency/]: Added sample usage on Software Transactional Memory. 
    7173* [docs/Perl6/FAQ/Capture.pod] - FAQ on the new Signature/Capture calling convention. 
    7274* [docs/Perl6/FAQ/FUD.pod] - Fears, Uncertainties and Doubts about Perl 6. 
     
    9799    if %ENV { 3 } { 4 } # %ENV by itself 
    98100* Support for Unicode bracket characters for quotelike operators 
    99 * The rx_ macros in Prelude for user-defined rule handlers has been discontinued. 
     101* The rx_ macros in Prelude for user-defined rule handlers has been discontinued 
     102* Proper desugaring of `.=` expressions, such as `@a .= map(&sqrt)` 
     103* If a block ends on a line by itself, an implicit semicolon is assumed if possible 
     104* Support for implicit-topic dereferences such as `.[0]` and `.<foo>` 
     105* Multiline support in the interactive shell now recognizes unrecoverable parsefails 
     106* Array and hash sigilled match variables, such as `@0`, `@<foo>` and `%<bar>` 
    100107 
    101108== Bug Fixes 
     
    113120* `sign` and `<=>` now fails on underfined arguments, instead of returning undef. 
    114121* Implicit variables following a declarator was broken: `{my $x; $^y}.(42)`  
     122* The bogus comma-less block argument form `map {$_} 1,2,3` is no longer supported 
     123* In `(@x, @y) = (1,2,3)`, the `@y` is now cleared into an empty list 
    115124 
    116125== Backends