| OLD | NEW |
| 1 ## 0.11.12 |
| 2 * Number formatting now accepts "int-like" inputs that don't have to |
| 3 conform to the num interface. In particular, you can now pass an Int64 |
| 4 from the fixnum package and format it. In addition, this no longer |
| 5 multiplies the result, so it won't lose precision on a few additional |
| 6 cases in JS. |
| 7 |
| 1 ## 0.11.11 | 8 ## 0.11.11 |
| 2 * Add a -no-embedded-plurals flag to reject plurals and genders that | 9 * Add a -no-embedded-plurals flag to reject plurals and genders that |
| 3 have either leading or trailing text around them. This follows the | 10 have either leading or trailing text around them. This follows the |
| 4 ICU recommendation that a plural or gender should contain the | 11 ICU recommendation that a plural or gender should contain the |
| 5 entire phrase/sentence, not just part of it. | 12 entire phrase/sentence, not just part of it. |
| 6 | 13 |
| 7 ## 0.11.10 | 14 ## 0.11.10 |
| 8 * Fix some style glitches with naming. The only publicly visible one | 15 * Fix some style glitches with naming. The only publicly visible one |
| 9 is DateFormat.parseUtc, but the parseUTC variant is still retained | 16 is DateFormat.parseUtc, but the parseUTC variant is still retained |
| 10 for backward-compatibility. | 17 for backward-compatibility. |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 canonicalizing. Previously anything of length > 6 was left completely alone. | 99 canonicalizing. Previously anything of length > 6 was left completely alone. |
| 93 | 100 |
| 94 ## 0.9.8 | 101 ## 0.9.8 |
| 95 | 102 |
| 96 * Add a "meaning" optional parameter for Intl.message to distinguish between | 103 * Add a "meaning" optional parameter for Intl.message to distinguish between |
| 97 two messages with identical text. | 104 two messages with identical text. |
| 98 | 105 |
| 99 * Handle two different messages with the same text. | 106 * Handle two different messages with the same text. |
| 100 | 107 |
| 101 * Allow complex string literals in arguments (e.g. multi-line) | 108 * Allow complex string literals in arguments (e.g. multi-line) |
| OLD | NEW |