OLD | NEW |
(Empty) | |
| 1 #### 0.21.4 - 2015-05-15 |
| 2 * Add stats reporting for fake async tests. You can query the number of |
| 3 pending microtasks and timers via `microtaskCount`, `periodicTimerCount`, |
| 4 `nonPeriodicTimerCount`. |
| 5 |
| 6 #### 0.21.3+1 - 2015-05-11 |
| 7 * Switch from unittest to test. |
| 8 |
| 9 #### 0.21.3 - 2015-03-03 |
| 10 * Bugfix: fixed return type on some methods (e.g. `where` of `Iterable`s |
| 11 returned by Multimap. |
| 12 |
| 13 #### 0.21.2 - 2015-03-03 |
| 14 * Bugfix: fix drifting times in `Metronome`. |
| 15 * Add `LruMap` to quiver/collection. |
| 16 * Un-deprecate Glob; feedback was that package:glob was not a suitable |
| 17 replacement in many cases. Key reasons: dependency on dart:io and |
| 18 significantly poorer performance. |
| 19 |
| 20 #### 0.21.1 - 2015-02-05 |
| 21 * Add optional start param to `Glob.allMatches()` to match superclass |
| 22 method signature. |
| 23 * Add optional start param to `Pattern` returned by `matchesAny()` to match |
| 24 superclass method signature. |
| 25 * Deprecate Glob. Use package:glob. Will be removed in 0.22.0. |
| 26 |
| 27 #### 0.21.0+3 - 2015-02-04 |
| 28 * Travis CI integration support added. |
| 29 * Document that the deprecated functions `padLeft`, `padRight`, `trimLeft`, |
| 30 `trimRight` will be removed in 0.22.0. |
| 31 |
| 32 #### 0.21.0+2 - 2015-02-04 |
| 33 * Fix hanging `FakeAsync` unit test. |
| 34 |
| 35 #### 0.21.0+1 - 2015-02-03 |
| 36 * Replace `equalsTester` dependency on `unittest` with finer-grained |
| 37 dependency on `matcher`. |
| 38 * `path` is now a dev dependency. |
| 39 |
| 40 #### 0.21.0 - 2015-02-02 |
| 41 * Multimap: `toMap()` is deprecated and replaced with `asMap()`. `toMap()` |
| 42 will be removed in v0.22.0. |
| 43 * Cleanup method signatures that were inconsistent with the core library. |
| 44 * Added `areEqualityGroups` matcher for testing `operator==` and `hashCode`. |
| 45 * CONTRIBUTING.md added. |
| 46 |
| 47 #### 0.20.0 - 2014-12-10 |
| 48 * Multimap: better `toString()` on returned collections. |
| 49 * Multimap: Bugfix: support edits on empty value collections. |
| 50 * Multimap: Added missing return statment in `fold`. |
| 51 * Added isEmpty() in `strings`. |
| 52 * Added max SDK constraint <2.0.0 |
| 53 * Minor updates to README.md. |
| 54 * CHANGELOG.md added |
| 55 |
| 56 #### 0.19.0+1 - 2014-11-12 |
| 57 * Corrected version constraint suggestion in README.md. |
OLD | NEW |