| OLD | NEW |
| 1 ## 1.4.0 |
| 2 |
| 3 - Added `AsyncMemoizer.future`, which allows the result to be accessed before |
| 4 `runOnce()` is called. |
| 5 |
| 6 - Added `RestartableTimer`, a non-periodic timer that can be reset over and |
| 7 over. |
| 8 |
| 1 ## 1.3.0 | 9 ## 1.3.0 |
| 2 | 10 |
| 3 - Added `StreamCompleter` class for creating a stream now and providing its | 11 - Added `StreamCompleter` class for creating a stream now and providing its |
| 4 events later as another stream. | 12 events later as another stream. |
| 5 | 13 |
| 6 - Added `StreamQueue` class which allows requesting events from a stream | 14 - Added `StreamQueue` class which allows requesting events from a stream |
| 7 before they are avilable. It is like a `StreamIterator` that can queue | 15 before they are avilable. It is like a `StreamIterator` that can queue |
| 8 requests. | 16 requests. |
| 9 | 17 |
| 10 - Added `SubscriptionStream` which creates a single-subscription stream | 18 - Added `SubscriptionStream` which creates a single-subscription stream |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 - Added a `StreamGroup` class for merging the events of a group of streams, | 42 - Added a `StreamGroup` class for merging the events of a group of streams, |
| 35 potentially of unknown size. | 43 potentially of unknown size. |
| 36 | 44 |
| 37 ## 1.1.1 | 45 ## 1.1.1 |
| 38 | 46 |
| 39 - Updated SDK version constraint to at least 1.9.0. | 47 - Updated SDK version constraint to at least 1.9.0. |
| 40 | 48 |
| 41 ## 1.1.0 | 49 ## 1.1.0 |
| 42 | 50 |
| 43 - ChangeLog starts here. | 51 - ChangeLog starts here. |
| OLD | NEW |