| OLD | NEW |
| 1 ## 0.12.1 |
| 2 * Adds a DateFormat.parseLoose that accepts mixed case and missing |
| 3 delimiters when parsing dates. It also allows arbitrary amounts of |
| 4 whitespace anywhere that whitespace is expected. So, for example, |
| 5 in en-US locale a yMMMd format would accept "SEP 3 2014", even |
| 6 though it would generate "Sep 3, 2014". This is fairly limited, and |
| 7 its reliability in other locales is not known. |
| 8 |
| 1 ## 0.12.0+3 | 9 ## 0.12.0+3 |
| 2 * Update pubspec dependencies to allow analyzer version 23. | 10 * Update pubspec dependencies to allow analyzer version 23. |
| 3 | 11 |
| 4 ## 0.12.0+2 | 12 ## 0.12.0+2 |
| 5 * No user impacting changes. Tighten up a couple method signatures to specify | 13 * No user impacting changes. Tighten up a couple method signatures to specify |
| 6 that int is required. | 14 that int is required. |
| 7 | 15 |
| 8 ## 0.12.0+1 | 16 ## 0.12.0+1 |
| 9 * Fixes bug with printing a percent or permille format with no fraction | 17 * Fixes bug with printing a percent or permille format with no fraction |
| 10 part and a number with no integer part. For example, print 0.12 with a | 18 part and a number with no integer part. For example, print 0.12 with a |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 canonicalizing. Previously anything of length > 6 was left completely alone. | 128 canonicalizing. Previously anything of length > 6 was left completely alone. |
| 121 | 129 |
| 122 ## 0.9.8 | 130 ## 0.9.8 |
| 123 | 131 |
| 124 * Add a "meaning" optional parameter for Intl.message to distinguish between | 132 * Add a "meaning" optional parameter for Intl.message to distinguish between |
| 125 two messages with identical text. | 133 two messages with identical text. |
| 126 | 134 |
| 127 * Handle two different messages with the same text. | 135 * Handle two different messages with the same text. |
| 128 | 136 |
| 129 * Allow complex string literals in arguments (e.g. multi-line) | 137 * Allow complex string literals in arguments (e.g. multi-line) |
| OLD | NEW |