| OLD | NEW |
| 1 ## 1.11.1 |
| 2 |
| 3 * Fix new strong-mode warnings introduced in Dart 1.17.0. |
| 4 |
| 1 ## 1.11.0 | 5 ## 1.11.0 |
| 2 | 6 |
| 3 * Add a `typedStreamTransformer()` function. This wraps an untyped | 7 * Add a `typedStreamTransformer()` function. This wraps an untyped |
| 4 `StreamTransformer` with the correct type parameters, and asserts the types of | 8 `StreamTransformer` with the correct type parameters, and asserts the types of |
| 5 events as they're emitted from the transformed stream. | 9 events as they're emitted from the transformed stream. |
| 6 | 10 |
| 7 * Add a `StreamSinkTransformer.typed()` static method. This wraps an untyped | 11 * Add a `StreamSinkTransformer.typed()` static method. This wraps an untyped |
| 8 `StreamSinkTransformer` with the correct type parameters, and asserts the | 12 `StreamSinkTransformer` with the correct type parameters, and asserts the |
| 9 types of arguments passed in to the resulting sink. | 13 types of arguments passed in to the resulting sink. |
| 10 | 14 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 - Added a `StreamSplitter` class for splitting a stream into multiple new | 132 - Added a `StreamSplitter` class for splitting a stream into multiple new |
| 129 streams. | 133 streams. |
| 130 | 134 |
| 131 ## 1.1.1 | 135 ## 1.1.1 |
| 132 | 136 |
| 133 - Updated SDK version constraint to at least 1.9.0. | 137 - Updated SDK version constraint to at least 1.9.0. |
| 134 | 138 |
| 135 ## 1.1.0 | 139 ## 1.1.0 |
| 136 | 140 |
| 137 - ChangeLog starts here. | 141 - ChangeLog starts here. |
| OLD | NEW |