| OLD | NEW |
| 1 ## 0.12.0+2 |
| 2 * No user impacting changes. Tighten up a couple method signatures to specify |
| 3 that int is required. |
| 4 |
| 1 ## 0.12.0+1 | 5 ## 0.12.0+1 |
| 2 * Fixes bug with printing a percent or permille format with no fraction | 6 * Fixes bug with printing a percent or permille format with no fraction |
| 3 part and a number with no integer part. For example, print 0.12 with a | 7 part and a number with no integer part. For example, print 0.12 with a |
| 4 format pattern of "#%". The test for whether | 8 format pattern of "#%". The test for whether |
| 5 there was a printable integer part tested the basic number, so it ignored the | 9 there was a printable integer part tested the basic number, so it ignored the |
| 6 integer digits. This was introduced in 0.11.2 when we stopped multiplying | 10 integer digits. This was introduced in 0.11.2 when we stopped multiplying |
| 7 the input number in the percent/permille case. | 11 the input number in the percent/permille case. |
| 8 | 12 |
| 9 ## 0.12.0 | 13 ## 0.12.0 |
| 10 * Make withLocale and defaultLocale use a zone, so async operations | 14 * Make withLocale and defaultLocale use a zone, so async operations |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 canonicalizing. Previously anything of length > 6 was left completely alone. | 117 canonicalizing. Previously anything of length > 6 was left completely alone. |
| 114 | 118 |
| 115 ## 0.9.8 | 119 ## 0.9.8 |
| 116 | 120 |
| 117 * Add a "meaning" optional parameter for Intl.message to distinguish between | 121 * Add a "meaning" optional parameter for Intl.message to distinguish between |
| 118 two messages with identical text. | 122 two messages with identical text. |
| 119 | 123 |
| 120 * Handle two different messages with the same text. | 124 * Handle two different messages with the same text. |
| 121 | 125 |
| 122 * Allow complex string literals in arguments (e.g. multi-line) | 126 * Allow complex string literals in arguments (e.g. multi-line) |
| OLD | NEW |