| OLD | NEW |
| 1 ## 0.9.9 |
| 2 |
| 3 * Add NumberFormat.parse() |
| 4 |
| 5 * Allow NumberFormat constructor to take an optional currency name/symbol, so |
| 6 you can format for a particular locale without it dictating the currency, and |
| 7 also supply the currency symbols which we don't have yet. |
| 8 |
| 9 * Canonicalize locales more consistently, avoiding a number of problems if you |
| 10 use a non-canonical form. |
| 11 |
| 12 * For locales whose length is longer than 6 change "-" to "_" in position 3 when |
| 13 canonicalizing. Previously anything of length > 6 was left completely alone. |
| 14 |
| 1 ## 0.9.8 | 15 ## 0.9.8 |
| 2 | 16 |
| 3 * Add a "meaning" optional parameter for Intl.message to distinguish between | 17 * Add a "meaning" optional parameter for Intl.message to distinguish between |
| 4 two messages with identical text. | 18 two messages with identical text. |
| 5 | 19 |
| 6 * Handle two different messages with the same text. | 20 * Handle two different messages with the same text. |
| 7 | 21 |
| 8 * Allow complex string literals in arguments (e.g. multi-line) | 22 * Allow complex string literals in arguments (e.g. multi-line) |
| 9 | 23 |
| 10 | 24 |
| 11 | 25 |
| OLD | NEW |