| OLD | NEW |
| 1 ## 0.11.10 | 1 ## 0.11.10 |
| 2 * Fix some style glitches with naming. The only publicly visible one | 2 * Fix some style glitches with naming. The only publicly visible one |
| 3 is DateFormat.parseUtc, but the parseUTC variant is still retained | 3 is DateFormat.parseUtc, but the parseUTC variant is still retained |
| 4 for backward-compatibility. | 4 for backward-compatibility. |
| 5 | 5 |
| 6 * Provide a better error message when generating translated versions |
| 7 and the name of a variable substitution in the message doesn't |
| 8 match the name in the translation. |
| 9 |
| 6 ## 0.11.9 | 10 ## 0.11.9 |
| 7 * Fix bug with per-mille parsing (only divided by 100, not 1000) | 11 * Fix bug with per-mille parsing (only divided by 100, not 1000) |
| 8 | 12 |
| 9 * Support percent and per-mille formats with both positive and negative | 13 * Support percent and per-mille formats with both positive and negative |
| 10 variations. Previously would throw an exception for too many modifiers. | 14 variations. Previously would throw an exception for too many modifiers. |
| 11 | 15 |
| 12 ## 0.11.8 | 16 ## 0.11.8 |
| 13 | 17 |
| 14 * Support NumberFormats with two different grouping sizes, e.g. | 18 * Support NumberFormats with two different grouping sizes, e.g. |
| 15 1,23,45,67,890 | 19 1,23,45,67,890 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 canonicalizing. Previously anything of length > 6 was left completely alone. | 86 canonicalizing. Previously anything of length > 6 was left completely alone. |
| 83 | 87 |
| 84 ## 0.9.8 | 88 ## 0.9.8 |
| 85 | 89 |
| 86 * Add a "meaning" optional parameter for Intl.message to distinguish between | 90 * Add a "meaning" optional parameter for Intl.message to distinguish between |
| 87 two messages with identical text. | 91 two messages with identical text. |
| 88 | 92 |
| 89 * Handle two different messages with the same text. | 93 * Handle two different messages with the same text. |
| 90 | 94 |
| 91 * Allow complex string literals in arguments (e.g. multi-line) | 95 * Allow complex string literals in arguments (e.g. multi-line) |
| OLD | NEW |