Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r10712 r10827 1 = Changes for 6.2.12 (rXXXXX) - June XX, 2006 *** up to r 9800excluding updates to misc/ ***1 = Changes for 6.2.12 (rXXXXX) - June XX, 2006 *** up to r10207 excluding updates to misc/ *** 2 2 3 3 == Licensing Changes … … 69 69 * Juerd's talk "Perl 6 Myths" in `/docs/talks/p6myths2.html`. 70 70 * [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. 71 73 * [docs/Perl6/FAQ/Capture.pod] - FAQ on the new Signature/Capture calling convention. 72 74 * [docs/Perl6/FAQ/FUD.pod] - Fears, Uncertainties and Doubts about Perl 6. … … 97 99 if %ENV { 3 } { 4 } # %ENV by itself 98 100 * 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>` 100 107 101 108 == Bug Fixes … … 113 120 * `sign` and `<=>` now fails on underfined arguments, instead of returning undef. 114 121 * 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 115 124 116 125 == Backends
