Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 0.12.1 | |
|
tjblasi
2015/01/06 19:18:23
This should probably be 0.12.0+1.
[https://www.da
Alan Knight
2015/01/06 19:22:16
Done.
| |
| 2 * 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 | |
| 4 format pattern of "#%". The test for whether | |
| 5 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 | |
| 7 the input number in the percent/permille case. | |
| 8 | |
| 1 ## 0.12.0 | 9 ## 0.12.0 |
| 2 * Make withLocale and defaultLocale use a zone, so async operations | 10 * Make withLocale and defaultLocale use a zone, so async operations |
| 3 inside withLocale also get the correct locale. Bumping the version | 11 inside withLocale also get the correct locale. Bumping the version |
| 4 as this might be considered breaking, or at least | 12 as this might be considered breaking, or at least |
| 5 behavior-changing. | 13 behavior-changing. |
| 6 | 14 |
| 7 ## 0.11.12 | 15 ## 0.11.12 |
| 8 * Number formatting now accepts "int-like" inputs that don't have to | 16 * Number formatting now accepts "int-like" inputs that don't have to |
| 9 conform to the num interface. In particular, you can now pass an Int64 | 17 conform to the num interface. In particular, you can now pass an Int64 |
| 10 from the fixnum package and format it. In addition, this no longer | 18 from the fixnum package and format it. In addition, this no longer |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 105 canonicalizing. Previously anything of length > 6 was left completely alone. | 113 canonicalizing. Previously anything of length > 6 was left completely alone. |
| 106 | 114 |
| 107 ## 0.9.8 | 115 ## 0.9.8 |
| 108 | 116 |
| 109 * Add a "meaning" optional parameter for Intl.message to distinguish between | 117 * Add a "meaning" optional parameter for Intl.message to distinguish between |
| 110 two messages with identical text. | 118 two messages with identical text. |
| 111 | 119 |
| 112 * Handle two different messages with the same text. | 120 * Handle two different messages with the same text. |
| 113 | 121 |
| 114 * Allow complex string literals in arguments (e.g. multi-line) | 122 * Allow complex string literals in arguments (e.g. multi-line) |
| OLD | NEW |